Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
1  
can you provide the rest of the stack trace? – Jason Cohen Mar 17 '09 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 '09 at 14:33

2 Answers

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.

share|improve this answer

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?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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