ssh框架从数据库视图中查询出的数据怎么存
1个回答
展开全部
我没学过ssh 不过如果是普通的Servlet&jsp的话
try
{ //root@localhost
Class.forName(driver);
Connection conn=DriverManager.getConnection(url,user,password);
if(conn!=null)
{
Statement s=conn.createStatement();
ResultSet rs=s.executeQuery("select * from boys");
while(rs!=null&&rs.next())
{
System.out.println(rs.getString(1)+" "+rs.getString(2)+" "+rs.getString(3));
}
}
}catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
//ResultSet rs=s.executeQuery("select * from boys");
//所有搜索出来的数据都会保存在rs里,只要你把rs当返回值返回就可以了
try
{ //root@localhost
Class.forName(driver);
Connection conn=DriverManager.getConnection(url,user,password);
if(conn!=null)
{
Statement s=conn.createStatement();
ResultSet rs=s.executeQuery("select * from boys");
while(rs!=null&&rs.next())
{
System.out.println(rs.getString(1)+" "+rs.getString(2)+" "+rs.getString(3));
}
}
}catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
//ResultSet rs=s.executeQuery("select * from boys");
//所有搜索出来的数据都会保存在rs里,只要你把rs当返回值返回就可以了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询