关于java 数据库问题。请问添加失败、更新失败、删除失败各是什么问题呢?
publicvoidAdd(){try{PreparedStatementpsm=openDB().prepareStatement("Insertcommondity(...
public void Add(){
try{
PreparedStatement psm=openDB().prepareStatement("Insert commondity(C_ID,C_Name,C_Price,C_Number) values(?,?,?,?)"); //添加数据到Commondity表
//设置PreparedStatement对象参数
psm.setString(1,txtID.getText());
psm.setString(2,txtName.getText());
psm.setString(3,txtPrice.getText());
psm.setString(4,txtNumber.getText());
psm.executeUpdate();
JOptionPane.showMessageDialog(null,"商品添加成功!");
psm.close();
}catch(Exception e){
JOptionPane.showMessageDialog(null,"商品添加失败!"+e);
}
}
public void Update(){
try{
Statement sm=openDB().createStatement();
String strUpdate="update commondity set C_ID='"+txtID.getText()+"',C_Name='"+txtName.getText()+"',C_Price='"+txtPrice.getText()+"',C_Number='"+txtNumber.getText()+"'";
sm.executeUpdate(strUpdate);
JOptionPane.showMessageDialog(null,"商品修改成功!");
sm.close();
}catch(Exception e){
JOptionPane.showMessageDialog(null,"商品修改失败!"+e);
}
}
public void Delete(){
try{
Statement sm=openDB().createStatement();
sm.executeUpdate("delete from commondity where C_ID='"+txtID.getText()+"'");
JOptionPane.showMessageDialog(null,"商品删除成功!");
sm.close();
}
catch(Exception e){
JOptionPane.showMessageDialog(null,"商品删除失败!"+e);
}
} 展开
try{
PreparedStatement psm=openDB().prepareStatement("Insert commondity(C_ID,C_Name,C_Price,C_Number) values(?,?,?,?)"); //添加数据到Commondity表
//设置PreparedStatement对象参数
psm.setString(1,txtID.getText());
psm.setString(2,txtName.getText());
psm.setString(3,txtPrice.getText());
psm.setString(4,txtNumber.getText());
psm.executeUpdate();
JOptionPane.showMessageDialog(null,"商品添加成功!");
psm.close();
}catch(Exception e){
JOptionPane.showMessageDialog(null,"商品添加失败!"+e);
}
}
public void Update(){
try{
Statement sm=openDB().createStatement();
String strUpdate="update commondity set C_ID='"+txtID.getText()+"',C_Name='"+txtName.getText()+"',C_Price='"+txtPrice.getText()+"',C_Number='"+txtNumber.getText()+"'";
sm.executeUpdate(strUpdate);
JOptionPane.showMessageDialog(null,"商品修改成功!");
sm.close();
}catch(Exception e){
JOptionPane.showMessageDialog(null,"商品修改失败!"+e);
}
}
public void Delete(){
try{
Statement sm=openDB().createStatement();
sm.executeUpdate("delete from commondity where C_ID='"+txtID.getText()+"'");
JOptionPane.showMessageDialog(null,"商品删除成功!");
sm.close();
}
catch(Exception e){
JOptionPane.showMessageDialog(null,"商品删除失败!"+e);
}
} 展开
3个回答
展开全部
所有的异常提示都已经说的很清楚了
1:insert 失败是因为 sql语句有问题 insert into tableName
2:update失败是因为数据问题,你更新的字段中某列有主键或者唯一索引(不允许该列字段有重复)比如ID是主键,数据库已经有一条ID=1的记录,你再把其他的一条记录更新成ID=1,肯定是出错。
3:删除失败是因为参数的数据类型不对,你把id传进来的参数当成字符案串传进来了
比如 应该是delete 。。。where id = 1 而你实际运行的是where id = '1'
1:insert 失败是因为 sql语句有问题 insert into tableName
2:update失败是因为数据问题,你更新的字段中某列有主键或者唯一索引(不允许该列字段有重复)比如ID是主键,数据库已经有一条ID=1的记录,你再把其他的一条记录更新成ID=1,肯定是出错。
3:删除失败是因为参数的数据类型不对,你把id传进来的参数当成字符案串传进来了
比如 应该是delete 。。。where id = 1 而你实际运行的是where id = '1'
展开全部
PreparedStatement psm=openDB().prepareStatement("Insert commondity(C_ID,C_Name,C_Price,C_N
sql的insert语法是insert into xxx表
你少了into这个关键字
sql的insert语法是insert into xxx表
你少了into这个关键字
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
修改时,又造成了关键字重复了。
String strUpdate="update commondity set C_Name='"+txtName.getText()+"',C_Price='"+txtPrice.getText()+"',C_Number='"+txtNumber.getText()+"' WHERE c_id="+txtID.getText();
String strUpdate="update commondity set C_Name='"+txtName.getText()+"',C_Price='"+txtPrice.getText()+"',C_Number='"+txtNumber.getText()+"' WHERE c_id="+txtID.getText();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询