英文: Why is the value of my database column always 0? 问题 我正在使用go-gorm从PostgreSQL数据库中获取值。相关的代码如下所示: ty...
How can I detect a connection failure in gorm?
英文: How can I detect a connection failure in gorm? 问题 我正在使用gorm ORM在Go中编写一个小而简单的Web应用程序。 由于数据库可能与Web...
Gorm Golang获取集合及其关联关系
英文: Gorm Golang fetching a collection and its relationships 问题 最近我开始使用Golang,并决定尝试使用GORM作为ORM。它在大多数情...
如何使用gorm填充和嵌入数组?
英文: How to populate and embedded array with gorm? 问题 我有两个包含以下数据的结构体: type User struct { Pics []Pic }...
GORM是否有Decimal数据类型?
英文: Does GORM have a Decimal datatype? 问题 GORM是否有用于存储货币值的十进制数据类型(例如Decimal(8,2))? 我在https://github.c...
如何获取最后添加的项目的实例?
英文: How can I retrieve instance of last added item 问题 我正在使用github.com/jinzhu/gorm和mysql后端。我想要在之前的Cre...
Golang调用MySQL函数
英文: golang calling mysql function 问题 我有一个现有的MySQL表,它使用MySQL的UUID_SHORT()函数生成唯一的ID。表的简化版本如下: CREATE T...
How can I go about making a many2many relationship to self in golang gorm?
英文: How can I go about making a many2many relationship to self in golang gorm? 问题 我有一个psql数据库,并且我正在使...
如何在Revel控制器中访问Gorm?
英文: How to access Gorm in Revel Controller? 问题 让我从头开始说,这是我在Go语言中玩耍的头几天。 我正在尝试使用Revel框架和Gorm,代码如下: ap...
与Gorm一起庆祝“未定义:页面”。
英文: Revel with Gorm "undefined: Page" 问题 我只会为你提供翻译服务,以下是你要翻译的内容: 我只是想用revel、gorm和pq创建一个新项目...
47