JDBC - Oracle ArrayIndexOutOfBoundsException

前端 未结 7 2175
北荒
北荒 2020-12-03 04:03

I\'m getting an Exception while trying to insert a row in oracle table. I\'m using ojdbc5.jar for oracle 11 this is the sql i\'m trying

INSERT INTO rule_def         


        
7条回答
  •  情深已故
    2020-12-03 04:09

    i am using mybatis + oracle + spring + maven. Same error "arrayindexoutofboundsexception", if having 8 (or) above parameters.

    In pom changed version ojdbc6 to ojdbc14,

        
            com.oracle
            ojdbc14
            10.2.0.3.0
        
    

    It worked.

提交回复
热议问题