ruby的语法真的是太优雅了!require mysql2# 配置数据源,连接musqlclient = Mysql2::Client.new(host: localhost,username: root,password: root,database: test,encoding: utf8)# Insert 插入state...
ruby的语法真的是太优雅了!
require 'mysql2'
# 配置数据源,连接musql
client = Mysql2::Client.new(
host: 'localhost',
username: 'root',
password: 'root',
database: 'test',
encoding: 'utf8'
)
# Insert 插入
statement = client.prepare("insert into users (email, password) values (?, ?)")
statement.execute("adley123@kk.com", "abc11111")
# Update 更新
statement = client.prepare("update users set email = ? where id= ?")
statement.execute("axs@122.com", 120)
# Delete 删除
statement = client.prepare("delete from users where id = ?")
statement.execute(114)
# Query 查询
results = client.query('SELECT * FROM users')
results.each do |row|
puts row
end
puts results.count
沃梦达教程
本文标题为:ruby 操作mysql crud


猜你喜欢
- Swift超详细讲解指针 2023-07-08
- Ruby的字符串与数组求最大值的相关问题讨论 2023-07-22
- Ruby on Rails在Ping ++ 平台实现支付 2023-07-22
- 汇编语言程序设计之根据输入改变屏幕颜色的代码 2023-07-06
- Golang http.Client设置超时 2023-09-05
- Ruby 迭代器知识汇总 2023-07-23
- R语言绘图数据可视化pie chart饼图 2022-12-10
- Go Web开发进阶实战(gin框架) 2023-09-06
- R语言-如何切换科学计数法和更换小数点位数 2022-11-23
- R语言关于二项分布知识点总结 2022-11-30