话不多说,直接上代码!
-
加载驱动
Class.forName(driver); //driver为驱动的全类名 -
创建连接
conn = DriverManager.getConnection(url,user,password); //数据库的URL,用户名和密 -
创建语句对象
stm = conn.createStatement(); //也可以使用preparedStatement -
执行SQL语句
String sql = "DELETE FROM book WHERE book_id = " + bookId;
int executeUpdate = stm.executeUpdate(sql); -
处理结果
return executeUpdate; -
释放资源
try{
stm.close();
}catch(SQLException e){
e.printStackTrace();
}finally{
try{
conn.close();
}catch(SQLException e){
e.printStackTrace();
}
}