准备好的语句中的限制和偏移量是什么?
我想从数据库中选择大量数据,并且还想在不影响数据库中原始数据的情况下编辑数据。如何使用准备好的语句来做到这一点?你能解释一下Java中的preparedstatement中的limit和offset是什么吗?
I wanted to select huge amount of data from database and also want to edit the data without affecting the original data from database. How to do this by using prepared statement? And can you explain what is limit and offset in preparedstatement in Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PreparedStatement
只是帮助您在数据库上创建查询。一旦运行查询来选择数据,您就必须将其从ResultSet
中取出,并且通常将其交给其他对象进行修改(例如 GUI 类等)。将必须运行另一个查询来更新或插入更改。 (请注意,在某些情况下,您可以使用
ResultSet
来编辑数据,但这听起来不像您所追求的那样)。The
PreparedStatement
is just going to help you create a query on the database. Once you run the query to select the data you have to pull it out of theResultSet
and typically hand it off to other objects to modify (like GUI classes, etc.)If you want to make changes you will have to run another query to Update or Insert changes. (Note in some cases you can use the
ResultSet
to edit data, but this doesn't sound like what you are after).