java 删除数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 删除数据相关的知识,希望对你有一定的参考价值。
我想根据id删除一条某表的信息,比如根据人员编号删除这个人员的信息。
String sql ="delete from person where personid =?";
conn = db.getConn();//打开数据库连接
下面怎么写?
ps = .......
用preparedstatment. (ps表示)
这个方法是返回boolean的。
这一块怎么写 ?
*************
id是传过来的 .这个我知道.
就是下面的那块怎么写 ?
用不用得着ResultSet了?我要求返回一个boolean值。
boolean result=false;
Connection con=null;
PreparedStatement pstmt=null;
try
con=StudentUtil.getConnection();
String sql="DELETE FROM StudentDB WHERE stuId=?";
pstmt=con.prepareStatement(sql);
pstmt.setInt(1,stuId);
pstmt.executeUpdate();
result=true;
catch (SQLException e)
// TODO 自动生成 catch 块
e.printStackTrace();
finally
StudentUtil.closePreparedStatement(pstmt);
StudentUtil.closeConnecion(con);
return result;
时间问题!不给你写了!给你例子你!相信你能看懂的!不明白再问我! 参考技术A String id="xxx"
String sql ="delete from person where personid ="+id;
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 stub 13 try { 14 Class.forName("com.mysql.jdbc.Driver");//加载数据库驱动 15 System.out.println("加载数据库驱动成功"); 16 String url="jdbc:mysql://localhost:3306/test";//声明自己的数据库test的url 17 String user="root";//声明自己的数据库账号 18 String password="123456";//声明自己的数据库密码 19 //建立数据库连接,获得连接对象conn 20 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 block 30 e.printStackTrace(); 31 } catch (SQLException e) { 32 // TODO Auto-generated catch block 33 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 stub 13 try { 14 Class.forName("com.mysql.jdbc.Driver");//加载数据库驱动 15 System.out.println("加载数据库驱动成功"); 16 String url="jdbc:mysql://localhost:3306/test";//声明自己的数据库test的url 17 String user="root";//声明自己的数据库账号 18 String password="123456";//声明自己的数据库密码 19 //建立数据库连接,获得连接对象conn 20 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 block 30 e.printStackTrace(); 31 } catch (SQLException e) { 32 // TODO Auto-generated catch block 33 e.printStackTrace(); 34 } 35 36 37 } 38 39 }
至此,java中使用jdbc操作数据库的增删改查全部操作完毕,参考者可以在上下篇随笔中参考,熟悉练习和使用jdbc操作数据库,理清操作思路,为以后学习更深打好基础
以上是关于java 删除数据的主要内容,如果未能解决你的问题,请参考以下文章