当前位置: 技术问答>java相关
在线焦急等待:java中如何将数据库的记录存放到一个二维数组中?
来源: 互联网 发布时间:2017-04-01
本文导语: 已在数据库中select出三个字段的记录,需要将其插入二维数组中并传递给jsp。 sql语句为: sql="select a,b,c from table where statement"; 需要插入的数组形式为: | 字段a | 字段b | 字段c | 第...
已在数据库中select出三个字段的记录,需要将其插入二维数组中并传递给jsp。
sql语句为:
sql="select a,b,c from table where statement";
需要插入的数组形式为:
| 字段a | 字段b | 字段c |
第一条记录 | | | |
第二条记录 | | | |
第三条记录 | | | |
请教:
如何实现?
sql语句为:
sql="select a,b,c from table where statement";
需要插入的数组形式为:
| 字段a | 字段b | 字段c |
第一条记录 | | | |
第二条记录 | | | |
第三条记录 | | | |
请教:
如何实现?
|
sql="select count(*) as totalcount from table where statement";
String[][] str=new String[][];
int i=0;
while(rs.next())
{
for(int j=0;j
String[][] str=new String[][];
int i=0;
while(rs.next())
{
for(int j=0;j