DBUtils执行更新
本文将演示如何使用DBUtils更新记录。我们将在Customer表中更新记录。
1 DBUtils执行更新的语法
String updateQuery = "UPDATE customer SET name = ? WHERE id=?";
int updatedRecords = queryRunner.update(conn, updateQuery, "jack" , 14 );
2 DBUtils执行更新的示例
2.1 编写Customer实体类
package com.yiidian.domain;
/**
* 一点教程网 - http://www.yiidian.com
*/
public class Customer {
private Integer id;
private String name;
private String gender;
private String telephone;
private String address;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public String getTelephone() {
return telephone;
}
public void setTelephone(String telephone) {
this.telephone = telephone;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
}
2.2 编写核心类
MainApp:
package com.yiidian.dbutils;
import com.yiidian.domain.Customer;
import org.apache.commons.dbutils.DbUtils;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.ResultSetHandler;
import org.apache.commons.dbutils.handlers.BeanHandler;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
/**
* 一点教程网 - http://www.yiidian.com
*/
public class MainApp {
// 驱动程序
static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
// URL连接
static final String DB_URL = "jdbc:mysql://localhost:3306/test";
//数据库信息
static final String USER = "root";
static final String PASS = "root";
public static void main(String[] args) throws SQLException {
Connection conn = null;
QueryRunner queryRunner = new QueryRunner();
DbUtils.loadDriver(JDBC_DRIVER);
conn = DriverManager.getConnection(DB_URL, USER, PASS);
try {
int updatedRecords = queryRunner.update(conn,
"UPDATE customer SET name=? WHERE id=?", "jack",14);
System.out.println("更新了 "+updatedRecords+" 条记录");
} finally {
DbUtils.close(conn);
}
}
}
2.3 运行测试
热门文章
优秀文章