public boolean checkBySid(long sid) {
int result = 0;
try {
Connection pconn = dbCon.getConnection();
result = new DaoUtil().getCount(pconn,
"select count(*) from okmember where sid = ?",
new Object[] { sid });
} catch (SQLException e) {
System.out.println(e);
}