当前位置: 技术问答>java相关
请问:如何读取一条纪录的所有值?
来源: 互联网 发布时间:2015-11-05
本文导语: 各位大侠,小弟有礼了! 在resin中使用连接池 try { DBPool pool=new DBPool(); Connection conn = pool.getPool("test").getConnection(); Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT * from test "); ***********************...
各位大侠,小弟有礼了!
在resin中使用连接池
try
{
DBPool pool=new DBPool();
Connection conn = pool.getPool("test").getConnection();
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery("SELECT * from test ");
**********************************//如何写?
}
catch (Exception e) {}
怎样读取test表中一条(例如第一条)纪录的所有值;
在resin中使用连接池
try
{
DBPool pool=new DBPool();
Connection conn = pool.getPool("test").getConnection();
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery("SELECT * from test ");
**********************************//如何写?
}
catch (Exception e) {}
怎样读取test表中一条(例如第一条)纪录的所有值;
|
try
for(int i=0;i
for(int i=0;i