xorm根據資料庫生成go model檔案的操作
你懂的,手工翻譯表定義到go結構體是很枯燥的。
so,用xorm搞定。
go get github.com/go-xorm/cmd/xorm
安裝以下依賴,用到哪個裝哪個。
github.com/go-xorm/xorm
驅動
Mysql: github.com/go-sql-driver/mysql
Postgres: github.com/lib/pq
SQLite: github.com/mattn/go-sqlite3
MSSQL: github.com/denisenkom/go-mssqldb
逆向生成
Reverse 命令可以轉換資料庫到所有支援的語言的資料結構,安裝以後可以用 xorm help reverse檢視幫助。
例子:
cd $GOPATH/src/github.com/go-xorm/cmd/xorm sqlite: xorm reverse sqite3 test.db templates/goxorm mysql: xorm reverse mysql root:root@/xorm_test?charset=utf8 templates/goxorm mymysql: xorm reverse mymysql xorm_test2/root/ templates/goxorm postgres: xorm reverse postgres "dbname=xorm_test sslmode=disable" templates/goxorm mssql: xorm reverse mssql "server=test;user id=testid;password=testpwd;database=testdb" templates/goxorm
會在./model目錄下生成go的檔案
坑
1、一定要在$GOPATH/src/github.com/go-xorm/cmd/xorm目錄下執行,因為在這個目錄下有templets,在解析資料庫結構的時候有用。如果在別的目錄下執行,會導致命令不報錯,但是無法正常生成對應的結構檔案。有空可以給github.com/go-xorm/cmd/xorm提個bug,加上錯誤提示。
2、執行xorm reverse mysql root:[email protected]:3306/testdb?charset=utf8 templates/goxorm報錯2017/08/16 14:09:18 [Error] reverse.go:176 default addr for network '127.0.0.1:3306' unknown
解決辦法:
xorm reverse mysql root:root@tcp(127.0.0.1:3306)/testdb?charset=utf8 templates/goxorm xorm reverse mysql root:root@tcp(127.0.0.1:3306)/testdb?charset=utf8 templates/goxorm
補充:「golang」xorm工具生成postgres的model
golang中的orm框架,一般使用xorm的xorm工具根據資料庫表自動生成struct檔案
xorm reverse postgres "dbname=queimsi sslmode=disable user=postgres password=123456 host=10.0.2.206 port=5432" /data/workspace/go/src/github.com/go-xorm/cmd/xorm/templates/goxorm
然後就會自動在當前目錄下生成表的struct檔案
以上為個人經驗,希望能給大家一個參考,也希望大家多多支援我們。如有錯誤或未考慮完全的地方,望不吝賜教。