我得到的Sql命令没有适当结束 当击中下面的这条线。
stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY);
String updateQ = "update ANI_999 set First_Name = "+d.getName()+" , HouseNo = "+d.getAddr1()+" , Indicator_Sourcefile_iCARE3 = Indicator_Sourcefile_iCARE2, Indicator_Sourcefile_iCARE2 = Indicator_Sourcefile_iCARE1, Indicator_Sourcefile_iCARE1= "+currentFile+" where CALLER_ID = "+msisdn+" ";
int result = stmt.executeUpdate(updateQ);
conn.commit();
conn.close();`
我不断得到ORA-00933: SQL指令没有适当结束。
update/code> 语句看起来像:
update ANI_999 set First_Name = ZAHARAH BINTI ABDUL RAHMAN , HouseNo = No. JKR6357, , Indicator_Sourcefile_iCARE3 = Indicator_Sourcefile_iCARE2, Indicator_Sourcefile_iCARE2 = Indicator_Sourcefile_iCARE1, Indicator_Sourcefile_iCARE1= ICAREP_ANI_SVCPROF_20120402_002.DAT where CALLER_ID = 058011726
这里就是整个函数: - 请将此符号“ & lt; & lt;” 命名为“ & lt; & lt;” 。
public void updateRecord(icData d, String msisdn) {
Connection conn = null;
Statement stmt = null;
int recCtr = 0;
try {
conn = ds.getConnection();
stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY);
String updateQ = "update ANI_999 set First_Name = "+d.getName()+" , HouseNo = "+d.getAddr1()+" , Indicator_Sourcefile_iCARE3 = Indicator_Sourcefile_iCARE2, Indicator_Sourcefile_iCARE2 = Indicator_Sourcefile_iCARE1, Indicator_Sourcefile_iCARE1= "+currentFile+" where CALLER_ID = "+msisdn+" ";
int result = stmt.executeUpdate(updateQ);
conn.commit();
conn.close();
}
catch(SQLException ex) {
logger.error("iCARE:Error : " + ex.getMessage()); <<this line show me that error>>
}
finally {
try {if (stmt != null) stmt.close();} catch (SQLException e) {}
try {if (conn != null) conn.close();} catch (SQLException e) {}
}
}