Introduction xorm is a Go ORM which provides rich functionality with very simple APIs. It supports all main stream databases, including MySQL, PostgreSQL, SQLite3 and MsSQL. It allows you use chain operations and combine with raw SQL statements. Moreover, it has session that supports transactions to make your business logic safe. Installation go get github.com/go-xorm/xorm API Documentation Please visit Go Walker. Basic Usages Sample Code Define model You have to define model before using the...