Topic: 关于JSP记录集的一个问题.

  Print this page

1.关于JSP记录集的一个问题. Copy to clipboard
Posted by: hanson888
Posted on: 2004-07-16 16:13

请问,用记录集对象中的什么方法可以实现记录集的位置.
比如下面是从数据库里查的结果
----------------------
1
2
3
4
5
----------------------

2.Re:关于JSP记录集的一个问题. [Re: hanson888] Copy to clipboard
Posted by: hanson888
Posted on: 2004-07-16 16:17

没写全应该如下
------------------------------------------------------------------
请问,用记录集对象中的什么方法可以实现跳转到某条记录上

比如下面是从数据库里查的结果
----------------------
1
2
3
4
5
----------------------
我想用ResultSet中的某个方法,把指针跳到某一条记录上,就象,ASP中的rs.move 4 就跳到第四条记录上.请问如何实现.

3.Re:关于JSP记录集的一个问题. [Re: hanson888] Copy to clipboard
Posted by: zerol
Posted on: 2004-07-16 17:27

try the three method of ResultSet:

boolean next() --- Moves the cursor down one row from its current position.
boolean previous() --- Moves the cursor to the previous row in this ResultSet object.
boolean relative(int rows) --- Moves the cursor a relative number of rows, either positive or negative.

For your convenience
http://java.sun.com/j2se/1.4.2/docs/api/java/sql/ResultSet.html

4.Re:关于JSP记录集的一个问题. [Re: zerol] Copy to clipboard
Posted by: safe
Posted on: 2004-07-16 17:34

and
boolean absolute(int row) -- Moves the cursor to the given row number in this ResultSet object.

5.Re:关于JSP记录集的一个问题. [Re: hanson888] Copy to clipboard
Posted by: hanson888
Posted on: 2004-07-19 09:43

3q

6.Re:关于JSP记录集的一个问题. [Re: hanson888] Copy to clipboard
Posted by: hanson888
Posted on: 2004-07-19 09:56

但很耗费资源吧.

7.Re:关于JSP记录集的一个问题. [Re: hanson888] Copy to clipboard
Posted by: hanson888
Posted on: 2004-07-19 10:02

http://java.sun.com/j2se/1.4.2/docs/api/java/sql/ResultSet.html
请问这本书在哪里可以下到.

8.Re:关于JSP记录集的一个问题. [Re: hanson888] Copy to clipboard
Posted by: yflzy
Posted on: 2004-07-31 14:33

这些功能是jdbc提供的吗?那么请问有没有得到记录集中记录总数的方法。

9.Re:关于JSP记录集的一个问题. [Re: yflzy] Copy to clipboard
Posted by: kkg
Posted on: 2004-07-31 20:19

yflzy wrote:
这些功能是jdbc提供的吗?那么请问有没有得到记录集中记录总数的方法。


rs.last();
int count=rs.getrow();

10.Re:关于JSP记录集的一个问题. [Re: hanson888] Copy to clipboard
Posted by: gmbeing
Posted on: 2004-08-04 11:32

见recordset存为vector是其中一个解决方法!

11.Re:关于JSP记录集的一个问题. [Re: hanson888] Copy to clipboard
Posted by: scnujoe
Posted on: 2004-08-04 14:23

rs.getRow();
rs.first();
rs.last();
rs.beforeFirst();
rs.afterLast();
rs.absolut(int);
rs.relative(int);
rs.previous();
rs.next();
rs.deleteRow();
rs.updateRow();
可以查看 ResultSet 的 API


   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923