Golang : GORM read from database example
Just a simple tutorial on how to use GORM(Golang Object Relational Map) to connect to a MySQL/MariaDB database and read data from it.
Here you go!
package main
import (
"fmt"
_ "github.com/go-sql-driver/mysql"
"github.com/jinzhu/gorm"
"time"
)
// Activities table SQL :
// id bigint(20) AUTO_INCREMENT
// username varchar(50)
// created_on timestamp
// action char(1)
// description varchar(300)
// visibility char(1)
type Activities struct {
Id int `sql:"AUTO_INCREMENT"`
Username string `sql:"varchar(50);unique"`
Created_On time.Time
Action string `sql:"type:char(1)"`
Description string `sql:"type:varchar(300)"`
Visibility string `sql:"type:char(1)"`
}
func main() {
dbConn, err := gorm.Open("mysql", "username:password@tcp(xx.xxx.xxx.xxx:3306)/database_name?charset=utf8&parseTime=true")
if err != nil {
fmt.Println(err)
}
// init
dbConn.DB()
dbConn.DB().Ping()
dbConn.DB().SetMaxIdleConns(10)
dbConn.DB().SetMaxOpenConns(100)
activity := Activities{} // a record
// get first record
dbConn.First(&activity)
fmt.Println(activity)
fmt.Println("------------------------------")
// get all records
activities := []Activities{} // a slice
//dbConn.Find(&activities)
//fmt.Println(activities)
// get records from record offset 1 to 10
// useful for pagination purpose! - just need to calculate the offset and limit dynamically
dbConn.Limit(10).Order("id asc").Find(&activities).Offset(1).Order("id asc").Find(&activities)
for _, v := range activities {
fmt.Println("Id : ", v.Id)
fmt.Println("Username : ", v.Username)
fmt.Println("Created On : ", v.Created_On)
fmt.Println("Action : ", v.Action)
fmt.Println("Desription : ", v.Description)
fmt.Println("Visibility : ", v.Visibility)
}
}
NOTE : Without the &parseTime=true
parameter in the dbConn configuration. Your driver will have problem reading(scanning) and translating the SQL timestamp.
References :
https://en.wikipedia.org/wiki/Object-relational_mapping
https://www.socketloop.com/tutorials/golang-connect-to-database-mysql-mariadb-server
See also : Golang : Connect to database (MySQL/MariaDB) server
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+4.1k Linux/MacOSX : Search and delete files by extension
+7.3k Golang : Generate human readable password
+8.5k Golang : How to capture return values from goroutines?
+12.9k Golang : Qt progress dialog example
+13.6k Golang: Pad right or print ending(suffix) zero or spaces in fmt.Printf example
+12.7k CodeIgniter : "Fatal error: Cannot use object of type stdClass as array" message
+19.5k Golang : Reset or rewind io.Reader or io.Writer
+5.1k Clean up Visual Studio For Mac installation failed disk full problem
+11.9k Golang : Validate email address
+21.5k Golang : Convert seconds to minutes and remainder seconds
+8.1k Golang : Generate Datamatrix barcode
+16k Golang : Convert slice to array