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;
}
上一篇: PAT B 1007 素数对猜想
下一篇: 求100以内全部素数。