我的代码工作正常,直到我关闭并再次运行它。现在我得到异常“类型DECIMAL的字符串格式无效。 at org.apache.derby.client.am.Statement.completeExecute(Unknown Source)“ 在我的代码的这一行:
String sql = "insert into app.customerinfo values (?,?,?,?)";
PreparedStatement prepSt = conn.prepareStatement(sql);
/*i am filling in the place holders in prepSt here in this form:
prepSt.setInt(1, objCust.getCustID()); */
int result = prepSt.executeUpdate();
(在prepSt.executeUpdate行) 我是java的新手,任何人都可以帮我解释为什么我会遇到这个例外吗?