golang数据库的基本操作方法
发表于:2024-11-23 作者:千家信息网编辑
千家信息网最后更新 2024年11月23日,这篇文章主要介绍"golang数据库的基本操作方法",在日常操作中,相信很多人在golang数据库的基本操作方法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"golan
千家信息网最后更新 2024年11月23日golang数据库的基本操作方法
这篇文章主要介绍"golang数据库的基本操作方法",在日常操作中,相信很多人在golang数据库的基本操作方法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"golang数据库的基本操作方法"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
golang操作数据库一般使用开源项目gorm,该项目拥有15000多star,功能较全面。
简单增删改查
类似于java的hibernate将数据封装到结构体(java到对象)中进行操作
package modelsimport ( "fmt" "github.com/astaxie/beego" "github.com/jinzhu/gorm" "riskcontrol/database" "riskcontrol/utils/snowflake" "time")const( score = "user_score")type ScoreModel struct { BaseModel UserId string `json:"user_id",gorm:"type:varchar(18);not null;comment:'用户id';"` Score int32 `json:"score",gorm:"type:int;null;comment:'分数'"` BindFacebook bool `json:"bind_facebook",gorm:"type:boolean;not null;comment:'中文名称'"` //IsValid bool `json:"-",gorm:"type:boolean;not null;default:1;comment:'是否有效(0:无效,1:有效)'"`}func init() { database.GetDB().AutoMigrate(&ScoreModel{})}/**设置匹配的表名称 */func (ScoreModel) TableName() string { return score}func (userMode *ScoreModel)BeforeCreate (scope *gorm.Scope) error { id,err := snowflake.NewSnowFlake().Generate() if err != nil{ beego.Error("snowflake get id error",err) return err } currentTime := time.Now() scope.SetColumn("Id", id ) scope.SetColumn("CreateTime",currentTime) scope.SetColumn("UpdateTime",currentTime) return nil}func (userMode *ScoreModel)BeforeUpdate (scope *gorm.Scope) error { currentTime := time.Now() scope.SetColumn("UpdateTime",currentTime) return nil}func GetScoreByUserId(userId string) (ScoreModel,error) { var userScore ScoreModel err := database.GetDB().Where(&ScoreModel{UserId:userId}).Last(&userScore).Error return userScore,err}func InsertScore(userId string,score int32,bindFacebook bool,appId string) bool { scoreModel := ScoreModel{UserId:userId,Score:score,BindFacebook:bindFacebook} scoreModel.AppId = appId if err := database.GetDB().Create(&scoreModel).Error;err != nil{ beego.Error("AddScore error",err) return false } database.GetDB().NewRecord(scoreModel) return true}func UpdateScore(id int64, addScore int32,bindFacebook bool ) bool { ScoreModel := ScoreModel{Score:addScore,BindFacebook:bindFacebook} ScoreModel.ID = id database.GetDB().Model(&ScoreModel).Update(&ScoreModel) return false }
自定义sql
更新
func UpdateScore(id int64, addScore int32,bindFacebook bool ) bool { sql := fmt.Sprintf("UPDATE user_score SET score = score + %d, bind_facebook = %t,update_time=now() where id = %d", addScore,bindFacebook,id) res := database.GetDB().Exec( sql ) num:= res.RowsAffected if num > 0{ return true } return false}
查询
func GetScoreHisByUserId(userId string,id string,up bool) ([]dto.ScoreHisDto,error) { var scoreHis []dto.ScoreHisDto partitionKey,_ := getPartitionKey() keyList := []int{partitionKey,partitionKey -1,partitionKey -2} sqlScript := " SELECT id, create_time ,remark,(score_after-score_before)/100 as add_score FROM score_his WHERE " if id != "" { if up == true { sqlScript += fmt.Sprintf("id > %s and ",id) }else{ sqlScript += fmt.Sprintf("id < %s and ",id) } } database.GetDB().Raw(sqlScript + " user_id = ? and partition_key in (?) order by id desc limit 20 ", userId, keyList ).Scan(&scoreHis) var err error return scoreHis,err}
ScoreHisDto的结构体为
type ScoreHisDto struct { Id string `json:"id"` Remark string `json:"remark"` CreateTime time.Time `json:"createTime"` AddScore float32 `json:"addScore"`}
注意,这里遇到一个坑,sql查询出的字段create_time查询出来后会被自动转为驼峰式createTime;这里和java mybatis不一样,mybatis在sql中需要把字段create_time设置别名createTime并映射到dto中到createTime上。
事务
var tx *gorm.DB//开启事务tx = database.GetDB().Begin()sql1 := ""tx.Exec( sql1 )sql2 := ""tx.Exec( sql2 )//提交事务tx.Commit()
异常处理
由于go没有try...catch...finally,在代码段每一个return前可能都要回滚事务,这样就很麻烦了。这时候可以使用golang到defer语句,该语句可在方法return前做一些操作,示例如下:
var err errorvar tx *gorm.DB//预定义方法 如果程序异常,则在方法return前回滚事务defer func() { if err != nil && tx != nil{ beego.Error(err, "tx rollback...") tx.Rollback() }}()
到此,关于"golang数据库的基本操作方法"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!
方法
数据
数据库
事务
基本操作
学习
查询
有效
名称
字段
更多
结构
语句
项目
帮助
实用
接下来
代码
分数
别名
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
娃娃机软件开发
全国网络安全竞赛信息
excel服务器2017
网络安全犯罪防控风险
布里斯托大学网络安全专业
app应用需要中心服务器
深圳小鲸鱼网络技术有限公司
奥赛网络技术有限公司官网
access的数据库属于
网络安全 国际形势
联盟哪个服务器好玩
个性化网络技术市场
招聘视频软件开发师
软件开发过程有架构设计吗
数据库支持的储存的文件类型
网络技术可以考大学吗
无线网络安全技术大全
自来水公司网络安全管理制度
网络安全与管理练习题
从数据库查出的数据带引号
做金融软件开发
网络安全自创童谣
刺激战场哪个服务器是真实的
power8服务器图片
unix数据自动传到服务器
为什么印度软件开发厉害
方舟服务器界面翻译
优秀论文数据库
网络安全法 内容安全
山东春考网络技术2022