java.sql.SQLException: ORA-00911: 无效字符

转载请标明出处:
原文首发于: http://www.zhangruibin.com
本文出自 RebornChang的博客

厚颜打广告,博主个人博客地址传送门 ,欢迎来访

java spring mybatis中 :

org.springframework.jdbc.BadSqlGrammarException: 
### Error updating database.  Cause: java.sql.SQLException: ORA-00911: 无效字符

### The error may involve com.ztesoft.sale.dao.channelMgr.IOnlineUserControlDAO.updateStateByESC-Inline
### The error occurred while setting parameters
### SQL: update ONLINE_USER_MSG_TAB     set state=?   where   id = ?;
### Cause: java.sql.SQLException: ORA-00911: 无效字符

; bad SQL grammar []; nested exception is java.sql.SQLException: ORA-00911: 无效字符

在最后一句中显示’;‘是错误的SQL,解决办法是将分号删除就行了,但是为什么加上’;'后会编译错误呢,看下面的的另一句错误报文:

10:51:46.696 [http-apr-8080-exec-1] DEBUG com.mchange.v2.sql.SqlUtils - Attempted to convert SQLException to SQLException. Leaving it alone. [SQLState: 42000; errorCode: 911]

稍微说下为啥在sqlplus中加分号无误,在mapper语句中加分号就编译错误,’;‘是标识符,但是在mapper中,类似的select标签就是指定的sql语句,所以加上额外的类似’;’,’,'的标点符号会引起编译错误.
所以,在提示无效字符的时候首先检查标点符号,其次检查字段名大小写之类的,很容易排除错误.

你可能感兴趣的:(JavaBUG)