Quickstart
Init Project
go get -u github.com/doytowin/goooqopackage main
import (
"database/sql"
"github.com/doytowin/goooqo/rdb"
_ "github.com/mattn/go-sqlite3"
)
func main() {
db, _ := sql.Open("sqlite3", "./test.db")
tm := rdb.NewTransactionManager(db)
//...
}Build DataAccess
id
name
score
memo
80
75
60
92
100
Related Documents
Last updated