• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    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: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文件

    以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。

    您可能感兴趣的文章:
    • 在golang xorm中使用postgresql的json,array类型的操作
    • golang xorm及time.Time自定义解决json日期格式的问题
    • golang xorm日志写入文件中的操作
    • go语言 xorm框架 postgresql 的用法及详细注解
    • golang中xorm的基本使用说明
    • 解决goxorm无法更新值为默认值的问题
    • 使用go xorm来操作mysql的方法实例
    • go xorm框架的使用
    上一篇:golang 生成定单号的操作
    下一篇:解决go build不去vendor下查找包的问题
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    xorm根据数据库生成go model文件的操作 xorm,根据,数据库,生成,model,