A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 幻觉 初级黑马   /  2018-12-5 20:41  /  766 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

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();
}
}
}


}

}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马