Exemple #1
0
 public override bool select()
 {
     if (chID == C.ERROR_INT)
         return false;
     string sqlCommand = String.Format("select * from CommonHouse where chID={0}", chID);
     Sql sql = new Sql();
     SqlDataReader reader = sql.selectCommonHouse(sqlCommand);
     initBySqlDataReader(reader);
     sql.closeConnection();
     return true;
 }