- 授权协议: 未知
- 开发语言: Google Go
- 操作系统: 跨平台
- 软件首页: https://github.com/astaxie/goorm
- 软件文档: https://github.com/astaxie/goorm
- 官方下载: https://github.com/astaxie/goorm/downloads
软件介绍
GoORM 是 Google Go 语言的 ORM 框架,它映射数据库记录到 Go 的结构体。特点是轻量级。
示例代码:
var bobs []Person
err := orm.GetAll(&bobs, "name = ?", "bob")
var everyone []Person
err := orm.GetAll(&everyone, "") // use empty string to omit "where" clause
