Home:ALL Converter>Can RowSets be used with PreparedStatements?

Can RowSets be used with PreparedStatements?

Ask Time:2008-12-27T11:33:36         Author:WolfmanDragon

Json Formatter

I have just found RowSets for database querying with JDBC. They are stateless and cacheable, they look to be superior to ResultSets.
Can PreparedStatements be used with them though? PreparedStatements are a performance booster for querying very large databases, and not something I would want to give up (before something is said, this is not premature optimization, we have a proven speed need!!). I need the fastest query return to a set here, caching is secondary.

Author:WolfmanDragon,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/394627/can-rowsets-be-used-with-preparedstatements
yy