Java MySQLexecuteQuery - 结果数
这可能是一个愚蠢的问题,但我花了两个小时寻找解决方案,但仍然没有找到任何东西。
我有这个:
String query = "SELECT i.id, i.title FROM mil..."'";
ResultSet result = preparedStatement.executeQuery();
我需要获取的结果数量。
我该怎么办?
谢谢
This might be a stupid question but I have spent 2 hours looking for the solution and still not found anything.
I have this :
String query = "SELECT i.id, i.title FROM mil..."'";
ResultSet result = preparedStatement.executeQuery();
And I need the number of results fetched.
How can I do ?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下 Stack Overflow 问题应该能够回答您的问题。
如何获取 java.sql 文件的大小? sql.ResultSet?
The following Stack Overflow question should be able to answer your problem.
How do I get the size of a java.sql.ResultSet?