目录〇、介绍驱动包和增强版Mysql操作库sqlx一、先导入驱动包和增强版mysql操作库Sqlx 二、insert操作 三、delete操作 四、update操作 五、s
package main
import (
"fmt"
//并不需要使用其api,只需要执行该包的init方法(加载MySQL是驱动程序)
_ "GitHub.com/go-sql-driver/mysql"
"github.com/jmoiron/sqlx"
)
此处需要导入导入mysql驱动包和增强版Mysql操作库Sqlx。
如果不清楚如何导入第三方包,请查看我的技术博客:手把手教你怎么使用Go语言第三方库。
//执行insert操作
func main() {
//连接数据库
//driverName:mysql,表示驱动器的名称是mysql也就上面"github.com/go-sql-driver/mysql"导入的驱动器。
//dataSourceName:root:123456@tcp(localhost:3306)/mydb 账户名:密码@tcp(ip:端口)/数据库名称
//sqlx.Open返回一个*sqlx.DB和错误。
db, _ := sqlx.Open("mysql", "root:123456@tcp(localhost:3306)/mydb")
defer db.Close()
//执行增删改
//query里面是sql语句。
result, e := db.Exec("insert into person(name,age,rmb,gender,brithday) values(?,?,?,?,?);", "小扬", 21, 8888, true, 20000101)
if e!=nil{
fmt.Println("err=",e)
return
}
// RowsAffected returns the number of rows affected by an
// update, insert, or delete. Not every database or database
// driver may support this.
rowsAffected, _ := result.RowsAffected()
// LastInsertId returns the integer generated by the database
// in response to a command. Typically this will be from an
// "auto increment" column when inserting a new row. Not all
// databases support this feature, and the syntax of such
// statements varies.
lastInsertId, _ := result.LastInsertId()
fmt.Println("受影响的行数=",rowsAffected)
fmt.Println("最后一行的ID=",lastInsertId)
}
使用sqlx包的Open连接数据库。
driverName:mysql,表示驱动器的名称是mysql也就上面"github.com/go-sql-driver/mysql"导入的驱动器。
dataSourceName是root:123456@tcp(localhost:3306)/mydb 它的含义是 账户名:密码@tcp(ip:端口)/数据库名称。
sqlx.Open返回一个*sqlx.DB和错误。
然后执行db.Exec()操作。
result, e := db.Exec("insert into person(name,age,rmb,gender,brithday) values(?,?,?,?,?);", "小扬", 21, 8888, true, 20000101)
第一个参数是query语句。
rowsAffected, _ := result.RowsAffected()
lastInsertId, _ := result.LastInsertId()
RowsAffected()求受影响的行数。RowsAffected返回update, insert, or delete影响的行数。不是每一个数据库和数据库驱动可能支持这个。
LastInsertId()求插入的最后一行的ID。
LastInsertId返回数据库生成的最后一个ID。通常,这来自插入新行时的“自动递增”列。不是所有数据库都支持此功能。
result, e := db.Exec("delete from person where name not like ?;", "%扬")
还是执行db.Exec(),第一个参数是delete语句。
查看该操作是否执行成功。
成功!!!试一试吧!
result, e := db.Exec("update person set name = ? where id = ?;", "大扬", 1)
成功执行!
来看一看结果吧!
现在可以看到数据更新成功。将id为1的数据的name项更新为”大扬“。
这里两个?,后面就要有两个参数。
package main
import (
"fmt"
//并不需要使用其API,只需要执行该包的init方法(加载MySQL是驱动程序)
_ "github.com/go-sql-driver/mysql"
"github.com/jmoiron/sqlx"
)
type Person struct {
// 对应name表字段
Name string `db:"name"`
// 对应age表字段
Age int `db:"age"`
// 对应rmb表字段
Money float64 `db:"rmb"`
}
func main() {
db, _ := sqlx.Open("mysql", "root:123456@tcp(localhost:3306)/mydb")
defer db.Close()
//预定义Person切片用于接收查询结果
var ps []Person
//执行查询,得到Perosn对象的集合,丢入预定义的ps地址
e := db.Select(&ps, "select name,age,rmb from person where name like ?;", "%扬")
if e != nil{
fmt.Println("err=",e)
}
fmt.Println("查询成功",ps)
}
Person结构体里面的属性对应数据库里面的字段。比如:
Age int `db:"age"`
表示Age对应表里面的字段age。
type Person struct {
// 对应name表字段
Name string `db:"name"`
// 对应age表字段
Age int `db:"age"`
// 对应rmb表字段
Money float64 `db:"rmb"`
}
var ps []Person
因为查询的结果可能为多条,所以使用Person切片。然后将查询结果放入ps中
提示:要使用ps的指针!
e := db.Select(&ps, "select name,age,rmb from person where name like ?;", "%扬")
下面我们来看看查询结果:
到此这篇关于使用GO语言实现Mysql数据库CURD的简单示例的文章就介绍到这了,更多相关GO语言Mysql数据库CURD内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: 使用GO语言实现Mysql数据库CURD的简单示例
本文链接: https://lsjlt.com/news/131911.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0