我想連接到一個數據庫,並使用Java程序中的預準備語句更新其中的一個表 - 數據庫被稱爲「數據庫」,並在那裏有另一個名爲Views的文件夾我試圖更新的表(「TABLE」)是。這裏是我的代碼:在java中準備SQL語句
public void updateTable(Map<String, String> mp) throws SQLException {
String URL = "jdbc:oracle:thin:@localhost:1500:orcl";
String USER = "user";
String PASS = "password";
Connection con = DriverManager.getConnection(URL, USER, PASS);
PreparedStatement updateTableName = null;
String updateString =
"update database.Views.TABLE " +
"set TABLENAME = ? " +
"where TABLENAME = ?";
try {
con.setAutoCommit(false);
updateTableName = con.prepareStatement(updateString);
for (Map.Entry<String, String> e : mp.entrySet())
{
updateTableName.setString(1, e.getValue());
updateTableName.setString(2, e.getKey());
updateTableName.executeUpdate();
con.commit();
}
} catch (SQLException e) {
if (con != null)
{
try {
System.err.print("Transaction is being rolled back");
con.rollback();
} catch (SQLException excep) {
}
}
} finally {
if (updateTableName != null)
{
updateTableName.close();
}
con.setAutoCommit(true);
}
con.close();
}
每當我運行代碼時,它顯示「正在回滾事務」。任何想法在try語句中有什麼錯誤?提前致謝!
編輯:當我改變它打印異常,它讀取ORA-00971:缺少SET關鍵字。
而不是隻抓,印刷/記錄異常可能連鎖行業é一些線索 – kosa
迪你讀過異常嗎? – SLaks