I am connecting to Sybase Central using JDBC. I believe the driver is com.sybase.jdbc.jdbc2.SybDriver.
I am running a web application. For the most part everything works fine. Unfortunately there is a place in the code that attempts to execute the following and then just hangs with no error message.
rs = stmt.executeQuery( query );
I've been printing out the query statement and executing it through dbisql( sybase's database query tool ) and the query works as is expected.
Does anyone have any ideas on how I can determine why it hangs on
rs = stmt.executeQuery( query );
Currently no error messages are thrown.