public class Test1 {
// 1.导入驱动jar包
// 2.注册驱动
public static void main(String[] args) {
Statement st=null;
Connection conn=null;
try {
Class.forName("com.mysql.jdbc.Driver");
// 获取数据库连接对象
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/uul", "root", "root");
// 定义sql语句
String sql="update emp set sal=500 where empno=7369 ";
// 获取执行sql对象statement,
st = conn.createStatement();
// 执行sql
int count = st.executeUpdate(sql);
// 处理结果
System.out.println(count);
// 释放资源
} catch (Exception e) {
e.printStackTrace();
}finally{
if(st!=null){
try {
st.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
if (conn!=null){
try {
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
} |
|