往sqlite表create插入一条数据时,报错:UNIQUE constraint failed,,插入的数据主键为 0,,而表中已经存在主键为 0 的数据

原表结构:

type Snapshot struct {
	ImgId        int    `json:"imgId" gorm:"type:integer primary key autoincrement not null;"`
	ImgDay       string `json:"imgDay"`
	ImgName      string `json:"imgName"`
	ImgPath      string `json:"imgPath"`
	ImgSize      string `json:"imgSize"`
	ImgTime      string `json:"imgTime"`
	IsLock       int    `json:"isLock" gorm:"default:-1"` // todo -1  1
	OriginalSize int64  `json:"originalSize"`
}

修改之后:

type Snapshot struct {
	Id           int    `json:"id" gorm:"type:integer primary key autoincrement not null;"`
	ImgDay       string `json:"imgDay"`
	ImgName      string `json:"imgName"`
	ImgPath      string `json:"imgPath"`
	ImgSize      string `json:"imgSize"`
	ImgTime      string `json:"imgTime"`
	IsLock       int    `json:"isLock" gorm:"default:-1"` // todo -1  1
	OriginalSize int64  `json:"originalSize"`
}

问题解决了,,主键将从1开始,,插入的数据 主键为0 就不存在 UNIQUE constraint failed 问题

问题来了:为什么?欢迎指教

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐