JDBC
编写步骤
概念
使用Java
语言操作关系型数据库的一套API
具体步骤
创建工程,导入驱动jar包
注册驱动
Class.forName("com.mysql.jdbc.Driver");
获取连接
Connection conn = DriverManager.getConnection(url, username, password);
Java代码需要发送
SQL
给MySQL
服务端,就需要先建立连接定义
SQL
语句String sql = “update…” ;
获取执行
SQL
对象执行
SQL
语句需要SQL
执行对象,而这个执行对象就是Statement
对象Statement stmt = conn.createStatement();
执行
SQL
stmt.executeUpdate(sql);
处理返回结果
释放资源
代码
public class JDBCDemo {
public static void main(String[] args) throws Exception {
Class.forName("com.mysql.jdbc.Driver");
String url="jdbc:mysql://127.0.0.1:3306/db1";
String username="root";
String password="dong";
Connection conn = DriverManager.getConnection(url, username, password);
String sql = "update account set money = 2000 where id = 1";
Statement stmt = conn.createStatement();
int count = stmt.executeUpdate(sql);
System.out.println(count);
stmt.close();
conn.close();
}
}
评论
匿名评论隐私政策
✅ 你无需删除空行,直接评论以获取最佳展示效果