Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

exception system

Status
Not open for further replies.

Jeto

Programmer
Nov 28, 2002
12
CN
Has anybody encountered this type of error

exception system:
exiting due to internal error:
exception dispatch or unwind stuck in infinite loop

I'm using an ORACLE database for all of my reference tables and loading them to memory for faster binary searching.


 
I have not seen the error but the first place I would look is at your insertion algorithm. From the error it sounds like you are using recursion.

Matt
 
Just got back to the office.

I don't think it's in the insertion agorithm as I do not insert anything as the tables are already sorted beforehand and therefore all I do is append it at the end. Also, the function that reads the table and writes them to memory is located in a different one. The function where the error occured does not call this function. What I suspect is in the searching module but I'm not sure because no matter what I put as value whether right or wrong, the search module always finds the appropriate value. From the way I debug the program, the error occurs at the end of the function when the function is returning a value, successful or not.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top