javaWeb_JDBC_Statement使用以及初步实现增删改
Posted 德墨特尔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javaWeb_JDBC_Statement使用以及初步实现增删改相关的知识,希望对你有一定的参考价值。
JDBC基础_Statement(初步实现增删改)
1.Sttement
(1).如何创建?
通过调用 Connection 对象的 createStatement 方法创建该对象
(2).如何使用?
A:该对象用于执行静态的 SQL 语句,并且返回执行结果
B:Statement 接口中定义了下列方法用于执行 SQL 语句:
ResultSet excuteQuery(String sql)
int excuteUpdate(String sql)
(3).实现步骤
-1. 获取数据库连接
-2. 关闭连接
-3. 准备插入的 SQL 语句
-4. 执行插入.
1). 获取操作 SQL 语句的 Statement 对象:
调用 Connection 的 createStatement() 方法来获取
2). 调用 Statement 对象的 executeUpdate(sql) 执行 SQL 语句进行插入
-5. 关闭 Statement 对象.
(4).代码实现
public void testStatement() throws Exception{
//1. 获取数据库连接
Connection conn = null;
Statement statement = null;
try {
conn = getConnection2();
//3. 准备插入的 SQL 语句
String sql = null;
sql = "INSERT INTO customers (NAME, EMAIL, BIRTH) " + "VALUES(‘XYZ‘, ‘[email protected]‘, ‘1990-12-12‘)";
System.out.println(sql);
//4. 执行插入.
//1). 获取操作 SQL 语句的 Statement 对象:
//调用 Connection 的 createStatement() 方法来获取
statement = conn.createStatement();
//2). 调用 Statement 对象的 executeUpdate(sql) 执行 SQL 语句进行插入
statement.executeUpdate(sql);
} catch (Exception e) {
e.printStackTrace();
} finally{
try {
//5. 关闭 Statement 对象.
if(statement != null)
statement.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally{
//2. 关闭连接
if(conn != null)
conn.close();
}
}
}
(5).总结:
通过 JDBC 向指定的数据表中插入一条记录.
1. Statement: 用于执行 SQL 语句的对象
1). 通过 Connection 的 createStatement() 方法来获取
2). 通过 executeUpdate(sql) 可以执行 SQL 语句.
3). 传入的 SQL 可以是 INSRET, UPDATE 或 DELETE. 但不能是 SELECT,主要是根据传入的sql不一样,我们可以对数据表进行不同的操作
2. Connection、Statement 都是应用程序和数据库服务器的连接资源. 使用后一定要关闭.
需要在 finally 中关闭 Connection 和 Statement 对象.
3. 关闭的顺序是: 先关闭后获取的. 即先关闭 Statement 后关闭 Connection
2.编写一个通用的增删改方法
/**
* 通用的更新的方法: 包括 INSERT、UPDATE、DELETE
* 版本 1.0
* 备注:粗糙版本,不建议使用
*/
public void update(String sql){
Connection conn = null;
Statement statement = null;
try {
conn = JDBCTools.getConnection();
statement = conn.createStatement();
statement.executeUpdate(sql);
} catch (Exception e) {
e.printStackTrace();
} finally{
JDBCTools.release(statement, conn);
}
}
//工具类
public class JDBCTools {
/**
* 关闭 Statement 和 Connection
* @param statement
* @param conn
*/
public static void release(Statement statement, Connection conn) {
if (statement != null) {
try {
statement.close();
} catch (Exception e2) {
e2.printStackTrace();
}
}
if (conn != null) {
try {
conn.close();
} catch (Exception e2) {
e2.printStackTrace();
}
}
}
/**
* 1. 获取连接的方法. 通过读取配置文件从数据库服务器获取一个连接.
*
* @return
* @throws Exception
*/
public static Connection getConnection() throws Exception {
// 1. 准备连接数据库的 4 个字符串.
// 1). 创建 Properties 对象
Properties properties = new Properties();
// 2). 获取 jdbc.properties 对应的输入流
InputStream in = JDBCTools.class.getClassLoader().getResourceAsStream(
"jdbc.properties");
// 3). 加载 2) 对应的输入流
properties.load(in);
// 4). 具体决定 user, password 等4 个字符串.
String user = properties.getProperty("user");
String password = properties.getProperty("password");
String jdbcUrl = properties.getProperty("jdbcUrl");
String driver = properties.getProperty("driver");
// 2. 加载数据库驱动程序(对应的 Driver 实现类中有注册驱动的静态代码块.)
Class.forName(driver);
// 3. 通过 DriverManager 的 getConnection() 方法获取数据库连接.
return DriverManager.getConnection(jdbcUrl, user, password);
}
}
以上是关于javaWeb_JDBC_Statement使用以及初步实现增删改的主要内容,如果未能解决你的问题,请参考以下文章
何时或如何将 QSqlTableModel 上的 fetchMore() 与 SQLite 数据库一起使用以使 rowCount() 工作?
如何将 Testcontainers 与 @DataJpaTest 结合使用以避免代码重复?