关于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);
}
}
展开
 我来答
JavaOutMan
2012-12-26 · 超过11用户采纳过TA的回答
知道答主
回答量:55
采纳率:0%
帮助的人:28.7万
展开全部
所有的异常提示都已经说的很清楚了

1:insert 失败是因为 sql语句有问题 insert into tableName

2:update失败是因为数据问题,你更新的字段中某列有主键或者唯一索引(不允许该列字段有重复)比如ID是主键,数据库已经有一条ID=1的记录,你再把其他的一条记录更新成ID=1,肯定是出错。
3:删除失败是因为参数的数据类型不对,你把id传进来的参数当成字符案串传进来了
比如 应该是delete 。。。where id = 1 而你实际运行的是where id = '1'
puziguo
2012-12-25 · TA获得超过1928个赞
知道小有建树答主
回答量:884
采纳率:86%
帮助的人:813万
展开全部
PreparedStatement psm=openDB().prepareStatement("Insert commondity(C_ID,C_Name,C_Price,C_N

sql的insert语法是insert into xxx表

你少了into这个关键字
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
bd9006
2012-12-25 · TA获得超过2.5万个赞
知道大有可为答主
回答量:4.8万
采纳率:63%
帮助的人:1.6亿
展开全部
修改时,又造成了关键字重复了。

String strUpdate="update commondity set C_Name='"+txtName.getText()+"',C_Price='"+txtPrice.getText()+"',C_Number='"+txtNumber.getText()+"' WHERE c_id="+txtID.getText();
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式