如何使用相同的 ResultSet 填充 2 个 CachedRowSet?
我需要使用 CachedRowSet
或任何其他可能的方式复制 ResultSet
的帮助。我现在
ResultSet rs = stmt.executeQuery(query);
CachedRowSetImpl crs = new CachedRowSetImpl();
crs.populate(rs);
如何使用 ResultSet
rs
填充不同的 CachedRowSet
(例如 crs2
)?
I need help with duplicating a ResultSet
using CachedRowSet
or any other way possible. I'm at this point
ResultSet rs = stmt.executeQuery(query);
CachedRowSetImpl crs = new CachedRowSetImpl();
crs.populate(rs);
How would one populate a different CachedRowSet
, say crs2
, with the ResultSet
rs
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试进行深度复制
to do a deep copy try