博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
beego 连接postgres
阅读量:5308 次
发布时间:2019-06-14

本文共 771 字,大约阅读时间需要 2 分钟。

package mainimport (	"fmt"	"github.com/astaxie/beego/orm"	"mybee/models"	_ "mybee/routers"	"github.com/astaxie/beego"	_ "github.com/lib/pq")func init() {	// PostgreSQL 配置	orm.RegisterDriver("postgres", orm.DRPostgres) // 注册驱动	orm.RegisterDataBase("default", "postgres", "user=odoo password=odoo dbname=mybee host=127.0.0.1 port=15432 sslmode=disable")	// 自动建表	orm.RunSyncdb("default", false, true)}func main() {	orm.Debug = true	o := orm.NewOrm()	o.Using("default")	user := new(models.User)	user.Name = "tom"	user.Age = 25	fmt.Println(o.Insert(user))	beego.Run()}

 

package modelsimport (	"github.com/astaxie/beego/orm")type User struct {	Id   int64	Name string	Age  int}func init() {	orm.RegisterModel(new(User))}

  

 

转载于:https://www.cnblogs.com/yanhuaqiang/p/10795392.html

你可能感兴趣的文章
linux下Rtree的安装
查看>>
【Java】 剑指offer(53-2) 0到n-1中缺失的数字
查看>>
Delphi中ListView类的用法
查看>>
多米诺骨牌
查看>>
Linq 学习(1) Group & Join--网摘
查看>>
asp.net 调用前台JS调用后台,后台掉前台JS
查看>>
Attribute(特性)与AOP
查看>>
苹果手表:大方向和谷歌一样,硬件分道扬镳
查看>>
Competing Consumers Pattern (竞争消费者模式)
查看>>
Android面试收集录15 Android Bitmap压缩策略
查看>>
PHP魔术方法之__call与__callStatic方法
查看>>
ubuntu 安装后的配置
查看>>
web前端之路,js的一些好书(摘自聂微东 )
查看>>
【模板】对拍程序
查看>>
【转】redo与undo
查看>>
解决升级系统导致的 curl: (48) An unknown option was passed in to libcurl
查看>>
Java Session 介绍;
查看>>
spoj TBATTLE 质因数分解+二分
查看>>
Django 模型层
查看>>
dedecms讲解-arc.listview.class.php分析,列表页展示
查看>>