English 中文(简体)
ora- 00933: SQL 命令未因更新 sql 语句而适当结束
原标题:ora-00933:SQL command not properly ended for update sql statement

我得到的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) {}
}
}
问题回答

您应该使用写作声明 :

String updateQ = "update ANI_999 set First_Name = ?, HouseNo = ?, " +
       "Indicator_Sourcefile_iCARE3 = Indicator_Sourcefile_iCARE2, " +
       "Indicator_Sourcefile_iCARE2 = Indicator_Sourcefile_iCARE1, " +
       "Indicator_Sourcefile_iCARE1=? where CALLER_ID = ? ";
PreparedStatement prep =  conn.prepareStatement(updateQ, 
    ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY); 
prep.setString(1, ...);
prep.setString(2, ...);
prep.setString(3, ...);
int result = prep.executeUpdate(updateQ);

ERROR: ORA-00933: SQL command not properly ended.
CAUSE: You tried to execute an SQL statement with an inappropriate clause.

与其只是抓取错误信息,不如在抓取区块中抓取堆叠跟踪。这为您提供了有根源的语句执行的行号 。

变动 变动

logger.error("iCARE:Error : " + ex.getMessage()); // <<this line show me that error>>

将 to

ex.printStackTrace(); // <<this line show me that error>>

或者,你可以尝试以下的代码修改,看看它是否适合你。

您更新语句的输入中有可能有一些未隐藏的字符, 从而导致错误。 将您的 < code> statement 对象更改为 < code> prepared statement , 看看是否解决 。

try {  
  ...
  String updateQ = "update ANI_999"  
    + " set First_Name = ?, HouseNo = ?,"  
    + " Indicator_Sourcefile_iCARE3 = Indicator_Sourcefile_iCARE2,"  
    + " Indicator_Sourcefile_iCARE2 = Indicator_Sourcefile_iCARE1,"  
    + " Indicator_Sourcefile_iCARE1=?"   
    + " where CALLER_ID = ?";  

  PreparedStatement pstmt = conn
   .createStatement( updateQ, ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY );  
  pstmt.setString( 1, d.getName() );  
  pstmt.setString( 2, d.getAddr1() );  
  pstmt.setString( 3, currentFile );  
  pstmt.setString( 4, msisdn );  

  // print what the query actually holds. Not sure if all drivers support this.
  System.out.println( "DEBUG: query: " + pstmt.toString() );

  int result = pstmt.executeUpdate( updateQ );  
  System.out.println( "DEBUG: Update Result: " + result );
  ...  
} catch ( Exception ex ) {  
  // logger.error( ...  
  ex.printStackTrace(); // keep this until debugged  
}  
...

如果您正在将变量字符串插入命令字符串,例如 。

string inputName = "Rose";
string sqlCmd = "SELECT * FROM mytable WHERE brand_name =  " + inputName +" ";

(a) 以上所述工作正常,但如:

string inputName = "Rose s";

The resulting SQL is SELECT * FROM mytable WHERE brand_name = Rose s which throws ORA-00933, so remember to escape your single quotes!

如果你使用 LIKE 条款,那么你可能不得不开始考虑逃离 s。 人们建议使用预先准备的语句的原因之一是,这样你就不必担心逃避。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...