Наследование: extends phprs\ezsql\rules\basic\BasicRule
Пример #1
0
 /** 
  * insertInto('table') => "INSERT INTO table"
  * 
  * @param string $table
  * @return \phprs\ezsql\rules\insert\ValuesRule
  */
 public static function insertInto($table)
 {
     $obj = new InsertRule(new SqlConetxt());
     return $obj->insertInto($table);
 }