连接工作正常。我可以使用以下代码插入行但在更新表时出现异常(SQLException:ORA-00933:SQL 命令未正确结束)。(BOX_ID 是整数,其余是 varchar)
PreparedStatement p_statement2=connection.prepareStatement("UPDATE TOYS_TABLE SET NAME= ? VENDOR=? LABLE=? WHERE NAME=? AND BOX_ID=?");
p_statement2.setString(1, "abc1");
p_statement2.setString(2, "abc2");
p_statement2.setString(3, "abc3");
p_statement2.setString(4, "XYZ123");
p_statement2.setInt(5,11);
try
{
p_statement2.executeUpdate();
p_statement2.close();
}
catch(Exception kl)
{
kl.toString();
p_statement2.close();
}