不使用 CachedRowSetImpl.execute() 复制 ResultSet
我试图在执行查询后关闭连接。 之前,我只是创建一个 CachedRowSetImpl 实例,它会负责为我释放资源。 但是,我正在使用 Hadoop 项目中的 Hive 数据库驱动程序。 它不支持 CachedRowSetImpl.execute()。 我想知道是否有其他方法允许我复制 ResultSet 对象并关闭连接?
I'm trying to close the connection after executing a query. Before, I just create a CachedRowSetImpl
instance and it will take care of release the resources for me. However, I am using Hive database driver from Hadoop project. It doesn't support CachedRowSetImpl.execute()
. I'm wondering if is there any other way that allow me to copy the ResultSet
object and close the connection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从现有
ResultSet
填充CachedRowSet
:You can populate a
CachedRowSet
from an existingResultSet
: