Inheritance: extends phprs\ezsql\rules\basic\BasicRule
Ejemplo n.º 1
0
 /**
  * replaceInto('table') => "REPLACE INTO table"
  * @param string $table
  * @return \phprs\ezsql\rules\replace\ValuesRule
  */
 public static function replaceInto($table)
 {
     $obj = new ReplaceIntoRule(new SqlConetxt());
     return $obj->replaceInto($table);
 }