Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ResultSet.TYPE_FORWARD_ONLY 和 ResultSet.TYPE_SCROLL_INSENSITIVE 有什么区别。因为我知道 forward_only 不可滚动,但我想要显示 forward_only 如何向前移动光标且不可滚动以及 Scroll_Insensitive 如何滚动的示例
ResultSet.TYPE_FORWARD_ONLY ResultSet.TYPE_SCROLL_INSENSITIVE
TYPE_FORWARD_ONLY 表示只能在结果集中向前移动。使用可滚动光标,您还可以向后移动到以前看到的行。游标的敏感度(对更改)指定对先前看到的行的更改是否反映在结果集中。
TYPE_FORWARD_ONLY 和 TYPE_SCROLL_INSENSITIVE 之间的唯一区别是您可以使用 TYPE_SCROLL_INSENSITIVE 在结果集周围自由移动。像 previous()、first()、absolute(n) 这样的方法不会像使用只进结果集那样抛出异常。
我是 Rails、jquery 等的新手。我创建了一个新项目,一切正常。现在我想每隔几秒刷新一个 HTML 表。
我在视图中的表格如下所示:
<table> <% @new.each do |s| %> <tr> <td><%= s.name %></td> <