Does the CachedRowSet size() -method work with the mm driver? I'm using
the latest 2.0pre5 version with the following code:
import javax.sql.*;
import sun.jdbc.rowset.*;
//PreparedStatement...
// executeQuery & rs.getxxx
CachedRowSet crset = new CachedRowSet();
crset.populate(rs);
int x = crset.size();
Despite the number of results from the query the only result I receive is
a 0!
It doesn't seem to make any difference wether the CachedRowSet
snippet is before or after the resultset.next() loop.
Lauri Faloon
faloon@stripped