Horde_Db_Adapter::prefetchPrimaryKey PHP 메소드

prefetchPrimaryKey() 공개 메소드

This is false for all adapters but Firebird.
public prefetchPrimaryKey ( $tableName = null ) : boolean
리턴 boolean
    public function prefetchPrimaryKey($tableName = null);

Usage Example

예제 #1
0
파일: SplitRead.php 프로젝트: horde/horde
 /**
  * Should primary key values be selected from their corresponding
  * sequence before the insert statement?  If true, next_sequence_value
  * is called before each insert to set the record's primary key.
  * This is false for all adapters but Firebird.
  *
  * @return boolean
  */
 public function prefetchPrimaryKey($tableName = null)
 {
     return $this->_write->prefetchPrimaryKey($tableName);
 }