示例#1
0
 /**
  * Inserts Delayed a new row.
  *
  * @param  array  $data  Column-value pairs.
  * @return mixed         The primary key of the row inserted.
  */
 public static function insertDelayed(array $data)
 {
     $tableSpec = (static::$_schema ? static::$_schema . '.' : '') . static::$_name;
     return static::$_db->insertDelayed($tableSpec, $data);
 }