Exemplo n.º 1
0
 public function getUpdateString()
 {
     $stmt = '';
     $colcount = 0;
     foreach ($this->data as $name => $col) {
         if ($colcount > 0) {
             $stmt .= ',';
         }
         $stmt .= ' ' . $name . '=';
         if ($this->literal[$name] === true) {
             $stmt .= $col;
         } else {
             $stmt .= Staple_Query::convertTypes($col);
         }
         $colcount++;
     }
     return $stmt;
 }
Exemplo n.º 2
0
 public static function Between($column, $start, $end)
 {
     $obj = new static();
     $obj->setColumn($column)->setOperator(self::BETWEEN)->setValue(Staple_Query::convertTypes($start) . " AND " . Staple_Query::convertTypes($end))->setColumnJoin(true);
     return $obj;
 }