vote up -1 vote down star

I have a java program that is trying to call a stored procedure that returns a cursor type. However after registering the appropriate out paramaters and calling callableStatement.execute() I recieve an arrayIndexOutOfBoundsException: -1

I dont fully understand why I am recieving this error at this point in the program. Can anyone explain typical reasons I might encounter this error

thanks

flag

62% accept rate
can you provide the rest of the stack trace? – Jason Cohen Mar 17 at 14:33
can you provide with your database INFO: brand, JDBC driver, a piece of code you are using... – Pablo Santa Cruz Mar 17 at 14:33

2 Answers

vote up 0 vote down

You try to access some array with the index -1. Check your code for this. By the way there should be some information about where this exception happens.

link|flag
vote up 0 vote down

This shouldn't have anything to do with the callable statement itself, it has to do with you trying to access an array or array-like object with an index that is out of bounds. If one of your parameters in the callable statement were out of bounds it would end up in a different error (Namely a type of SQLException). Can you provide a stack trace?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.