c/c++语言开发共享xorm根据数据库生成go model文件的操作

你懂的,手工翻译表定义到go结构体是很枯燥的。so,用xorm搞定。go get github.com/go-xorm/cmd/xorm安装以下依赖,用到哪个装哪个。驱动mysql: postgres

你懂的,手工翻译表定义到go结构体是很枯燥的。

so,用xorm搞定。

go get github.com/go-xorm/cmd/xorm

安装以下依赖,用到哪个装哪个。

驱动

mysql:

postgres:

sqlite:

mssql:

逆向生成

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:root@127.0.0.1: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文件

以上为个人经验,希望能给大家一个参考,也希望大家多多支持<计算机技术网(www.ctvol.com)!!>。如有错误或未考虑完全的地方,望不吝赐教。

本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/c-cdevelopment/596297.html

(0)
上一篇 2021年5月8日
下一篇 2021年5月8日

精彩推荐