Go 语言之 sqlx 库使用
一、sqlx 库安装与连接
sqlx 介绍
sqlx is a library which provides a set of extensions on go's standard database/sql
library. The sqlx versions of sql.DB
, sql.TX
, sql.Stmt
, et al. all leave the underlying interfaces untouched, so that their interfaces are a superset on the standard ones. This makes it relatively painless to integrate existing codebases using database/sql with sqlx.
Sqlx 是一个库,它在 go 的标准数据库/sql 库上提供了一组扩展。
sqlx库:https://github.com/jmoiron/sqlx
Illustrated guide to SQLX:http://jmoiron.github.io/sqlx/
sqlx:https://pkg.go.dev/github.com/jmoiron/sqlx
安装
go get github.com/jmoiron/sqlx
创建 sqlx_demo 项目
创建 main.go 文件
使用 go mod tidy 添加丢失的模块和删除未使用的模块
go mod tidy add missing and remove unused modules
Code/go/sqlx_demo via
标签:sqlx,return,语言,err,fmt,db,go,Go
From: https://www.cnblogs.com/QiaoPengjun/p/17477516.html