Java-结果集ResultSet如何取值
ResultSet rs;
String sql_cq_total = "select count(*) from Title where TType = 1 "
rs= conn.executeQuery(sql_cq_total);
rs.next();
int a = rs.getInt(1);//是不是这个地方出问题?本意想取得count(*)的值
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
楼主你的代码不对啊。。。 Connection有executeQuery()方法么?这种代码网上一搜一堆啦。
下面的实现我在mysql上测过了,没问题。
@Test
public void test13() throws Exception {
Class.forName("com.mysql.jdbc.Driver");
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost/test");
Statement statement = conn.createStatement();
ResultSet rs = statement.executeQuery("select count(*) from Title where TType=1");
rs.next();
int x=rs.getInt(1);
System.out.println(x);
}