Crap... look at this..
Quote:
Support for SCROLL_INSENSITIVE Result Sets in jConnect jConnect version 5.0 supports only TYPE_SCROLL_INSENSITIVE result sets.jConnect uses the Tabular Data Stream (TDS)--Sybase's proprietary protocol--to communicate with Sybase database servers. As of jConnect 5.0, TDS does not support scrollable cursors. To support scrollable cursors, jConnect caches the row data on demand, on the client, on each call to ResultSet.next( ). However, when the end of the result set is reached, the entire result set is stored in the client's memory. Because this may cause a performance strain, we recommend that you use TYPE_SCROLL_INSENSITIVE result sets only when the result set is reasonably small.
It says
Quote:
However, when the end of the result set is reached, the entire result set is stored in the client's memory.
.
Tsktsktsk... is there any other way aside from using scrollable results?
Or is there a way to resume a lost connection when using FORWARD_ONLY?
Or is there any other downloadable 3rd party JDBC driver exists? (aside from jTDS)
This is definitely a showstopper..