JDBC - Oracle ArrayIndexOutOfBoundsException

前端 未结 7 2173
北荒
北荒 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:31

    Looks like you're passing in the wrong number of parameters. You should be passing in 15, but you're either sending 16 or 14.

    0 讨论(0)
提交回复
热议问题