准备好的语句中的限制和偏移量是什么?

发布于 2024-10-31 20:26:32 字数 111 浏览 0 评论 0原文

我想从数据库中选择大量数据,并且还想在不影响数据库中原始数据的情况下编辑数据。如何使用准备好的语句来做到这一点?你能解释一下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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何以畏孤独 2024-11-07 20:26:32

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 the ResultSet 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文