【发布时间】:2011-07-29 16:49:58
【问题描述】:
我需要使用CachedRowSet 或任何其他可能的方式复制ResultSet 的帮助。我在这一点上
ResultSet rs = stmt.executeQuery(query);
CachedRowSetImpl crs = new CachedRowSetImpl();
crs.populate(rs);
如何使用ResultSet rs 填充不同的CachedRowSet,例如crs2?
【问题讨论】:
标签: java database oracle resultset cachedrowset