`
lwfshr
  • 浏览: 150428 次
  • 性别: Icon_minigender_2
  • 来自: 广州
社区版块
存档分类
最新评论

Invalid operation for the current cursor position

阅读更多

java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Invalid operation for the current cursor position   即当前游标为空

 

出错了,代码如下:DBtest.jsp

<body>数据库查询:
<%
 Connection con = null;
con = DriverManager.getConnection("proxool.Develop");
if(con!=null){
Statement st= con.createStatement();
ResultSet rst=st.executeQuery("select * from user_info");
out.println(rst.getString("name"));
}
else
out.println("fail");
}catch(Exception e)
{e.printStackTrace();

%>
</body>

 

需要在程序中加入:rst.next();移动到有数据的地方才能取数据。

修改后的代码如下:

ResultSet rst=st.executeQuery("select * from user_info");

rst.next();
out.println(rst.getString("name"));

 

 

分享到:
评论
1 楼 holdlg 2011-03-14  
  顶,你是正确的。

相关推荐

Global site tag (gtag.js) - Google Analytics