NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
# ORM Test 测试代码参见 * 表定义 [models_test.go](https://github.com/astaxie/beego/blob/master/orm/models_test.go) * 测试用例 [orm_test.go](https://github.com/astaxie/beego/blob/master/orm/orm_test.go) #### MySQL ```bash mysql -u root -e 'create database orm_test;' export ORM_DRIVER=mysql export ORM_SOURCE="root:@/orm_test?charset=utf8" go test -v github.com/astaxie/beego/orm ``` #### Sqlite3 ```bash touch /path/to/orm_test.db export ORM_DRIVER=sqlite3 export ORM_SOURCE=/path/to/orm_test.db go test -v github.com/astaxie/beego/orm ``` #### PostgreSQL ```bash psql -c 'create database orm_test;' -U postgres export ORM_DRIVER=postgres export ORM_SOURCE="user=postgres dbname=orm_test sslmode=disable" go test -v github.com/astaxie/beego/orm ```