Using GORM with YugabyteDB
GORM is an Object Relational Mapping (ORM) library for Golang. ORM converts data between incompatible type systems using object-oriented programming languages. An ORM library is a library that implements this technique and provides an object-oriented layer between relational databases and object-oriented programming languages.
In this blog post, we’ll show you how to:
- Start a YugabyteDB cluster on your local Engine.
- Download GORM and configure the sample project.
- Create a simple Go application to run GORM with YugabyteDB.
…