首页 > 代码库 > Java删除数据库中的数据

Java删除数据库中的数据

1:删除数据库中数据表中的数据同样也是一个非常用的技术,使用executeUpdate()方法执行用来做删除SQL的语句可以删除数据库表中的数据

2:本案例使用Statement接口中的executeUpdate()方法,删除数据库中users表中id为1的用户信息

 

 1 package com.ningmeng; 2  3 import java.sql.*; 4 /** 5  *  6  * @author biexiansheng 7  * 8  */ 9 public class Test06 {10 11     public static void main(String[] args) {12         // TODO Auto-generated method stub13         try {14             Class.forName("com.mysql.jdbc.Driver");//加载数据库驱动15             System.out.println("加载数据库驱动成功");16             String url="jdbc:mysql://localhost:3306/test";//声明自己的数据库test的url17             String user="root";//声明自己的数据库账号18             String password="123456";//声明自己的数据库密码19             //建立数据库连接,获得连接对象conn20             Connection conn=DriverManager.getConnection(url,user,password);21             System.out.println("连接数据库成功");22             String sql="delete from users where id=1";//生成一条sql语句23             Statement stmt=conn.createStatement();//创建Statement对象24             stmt.executeUpdate(sql);//执行sql语句25             System.out.println("数据库删除成功");26             conn.close();27             System.out.println("数据库关闭成功");//关闭数据库的连接28         } catch (ClassNotFoundException e) {29             // TODO Auto-generated catch block30             e.printStackTrace();31         } catch (SQLException e) {32             // TODO Auto-generated catch block33             e.printStackTrace();34         }35         36         37     }38 39 }

 

技术分享

技术分享

技术分享

技术分享


 3:批量删除操作

 

 1 package com.ningmeng; 2  3 import java.sql.*; 4 /** 5  *  6  * @author biexiansheng 7  * 8  */ 9 public class Test06 {10 11     public static void main(String[] args) {12         // TODO Auto-generated method stub13         try {14             Class.forName("com.mysql.jdbc.Driver");//加载数据库驱动15             System.out.println("加载数据库驱动成功");16             String url="jdbc:mysql://localhost:3306/test";//声明自己的数据库test的url17             String user="root";//声明自己的数据库账号18             String password="123456";//声明自己的数据库密码19             //建立数据库连接,获得连接对象conn20             Connection conn=DriverManager.getConnection(url,user,password);21             System.out.println("连接数据库成功");22             String sql="delete from users where sex=2";//生成一条sql语句23             Statement stmt=conn.createStatement();//创建Statement对象24             stmt.executeUpdate(sql);//执行sql语句25             System.out.println("数据库删除成功");26             conn.close();27             System.out.println("数据库关闭成功");//关闭数据库的连接28         } catch (ClassNotFoundException e) {29             // TODO Auto-generated catch block30             e.printStackTrace();31         } catch (SQLException e) {32             // TODO Auto-generated catch block33             e.printStackTrace();34         }35         36         37     }38 39 }

 

技术分享

技术分享

 

 

至此,java中使用jdbc操作数据库的增删改查全部操作完毕,参考者可以在上下篇随笔中参考,熟悉练习和使用jdbc操作数据库,理清操作思路,为以后学习更深打好基础

 

Java删除数据库中的数据