JDBC_删除数据
package cn.chunzhi.jdbc; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; /** * account表 删除数据 * delete */ public class Test04_Jdbc_删除数据 { public static void main(String[] args) { Connection conn = null; Statement stmt = null; try { // 1.注册驱动 Class.forName("com.mysql.jdbc.Driver"); // 2.获取数据库连接对象 conn = DriverManager.getConnection("jdbc:mysql://localhost:3305/db2", "root", "root"); // 3.获取执行sql语句的对象 stmt = conn.createStatement(); // 4.定义sql String sql = "delete from account where id = 4"; // 5.执行sql int count = stmt.executeUpdate(sql); // 6.处理结果 System.out.println(count); } catch (ClassNotFoundException | SQLException e) { e.printStackTrace(); } finally { // 7.释放资源 if (stmt != null) { try { stmt.close(); } catch (SQLException e) { e.printStackTrace(); } } if (conn != null) { try { conn.close(); } catch (SQLException e) { e.printStackTrace(); } } } } }