Object relation mapping with GORM

What is object-relation mapping (ORM, O/RM, and O/R mapping)? Object-relational mapping in computer science is a programming technique for converting data between incompatible type systems in object-oriented programming languages. This creates, in effect, a “virtual object database” that can be used from within the programming language. source: Wikipedia What is GORM? GORM is object-relation package for Go. It supports the following databases: FoundationDB PostgreSQL MySQL SQLite Installation It is easy to install by invoking go get command:...

November 15, 2015 · 5 min · Svetlin Ralchev