欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

123

程序员文章站 2024-03-15 15:53:35
...
public int  rowCount(String tablename){
	conn = DBConnection.getConn();
	int  num=0;
	try {
		st=conn.createStatement();
		rs= st.executeQuery("select count(*) from "+ tablename);
		rs.next();//结果集中,只有一条记录,其值为总记录数。
		num=rs.getInt(1);//获得总记录数。
		} catch (SQLException e) {
		e.printStackTrace();
		} finally {
		       DBConnection.close(conn, rs);
		}
	return num;
}