예제 #1
0
 public function __construct($tableName)
 {
     parent::__construct($tableName);
     $this->selectFieldArray = array();
     $this->where = null;
     $this->orderBy = null;
 }
예제 #2
0
 public function __construct($tableName)
 {
     parent::__construct($tableName);
     $this->valuePairArray = array();
     $this->onDuplicateUpdateArray = array();
     $this->ignore = 0;
     $this->setLastInsertId = 1;
 }
예제 #3
0
 protected function renderDatabaseDateValue($dateValue)
 {
     if (OpfSqlStatement::isNullDate($dateValue)) {
         return null;
     } else {
         return $dateValue;
     }
     // else
 }