黑马程序员技术交流社区

标题: 【成都校区】课堂笔记 [打印本页]

作者: 幻觉    时间: 2018-12-5 20:41
标题: 【成都校区】课堂笔记
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();
}
}
}


}

}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2