當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Doctrine_Record::assignIdentifier方法代碼示例

本文整理匯總了PHP中Doctrine_Record::assignIdentifier方法的典型用法代碼示例。如果您正苦於以下問題:PHP Doctrine_Record::assignIdentifier方法的具體用法?PHP Doctrine_Record::assignIdentifier怎麽用?PHP Doctrine_Record::assignIdentifier使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Doctrine_Record的用法示例。


在下文中一共展示了Doctrine_Record::assignIdentifier方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: _assignIdentifier

 protected function _assignIdentifier(Doctrine_Record $record)
 {
     $table = $record->getTable();
     $identifier = $table->getIdentifier();
     $seq = $table->sequenceName;
     if (empty($seq) && !is_array($identifier) && $table->getIdentifierType() != Doctrine_Core::IDENTIFIER_NATURAL) {
         $id = false;
         if ($record->{$identifier} == null) {
             if (($driver = strtolower($this->conn->getDriverName())) == 'pgsql') {
                 $seq = $table->getTableName() . '_' . $table->getColumnName($identifier);
             } elseif ($driver == 'oracle' || $driver == 'mssql') {
                 $seq = $table->getTableName();
             }
             $id = $this->conn->sequence->lastInsertId($seq);
         } else {
             $id = $record->{$identifier};
         }
         if (!$id) {
             throw new Doctrine_Connection_Exception("Couldn't get last insert identifier.");
         }
         $record->assignIdentifier($id);
     } else {
         $record->assignIdentifier(true);
     }
 }
開發者ID:sensorsix,項目名稱:app,代碼行數:25,代碼來源:UnitOfWork.php

示例2: processSingleInsert

 /**
  * @todo DESCRIBE WHAT THIS METHOD DOES, PLEASE!
  */
 public function processSingleInsert(Doctrine_Record $record)
 {
     $fields = $record->getPrepared();
     $table = $record->getTable();
     // Populate fields with a blank array so that a blank records can be inserted
     if (empty($fields)) {
         foreach ($table->getFieldNames() as $field) {
             $fields[$field] = null;
         }
     }
     $identifier = (array) $table->getIdentifier();
     $seq = $record->getTable()->sequenceName;
     if (!empty($seq)) {
         $id = $this->conn->sequence->nextId($seq);
         $seqName = $table->getIdentifier();
         $fields[$seqName] = $id;
         $record->assignIdentifier($id);
     }
     $this->conn->insert($table, $fields);
     if (empty($seq) && count($identifier) == 1 && $identifier[0] == $table->getIdentifier() && $table->getIdentifierType() != Doctrine::IDENTIFIER_NATURAL) {
         if (($driver = strtolower($this->conn->getDriverName())) == 'pgsql') {
             $seq = $table->getTableName() . '_' . $identifier[0];
         } elseif ($driver == 'oracle') {
             $seq = $table->getTableName();
         }
         $id = $this->conn->sequence->lastInsertId($seq);
         if (!$id) {
             throw new Doctrine_Connection_Exception("Couldn't get last insert identifier.");
         }
         $record->assignIdentifier($id);
     } else {
         $record->assignIdentifier(true);
     }
 }
開發者ID:prismhdd,項目名稱:victorioussecret,代碼行數:37,代碼來源:UnitOfWork.php

示例3: insert

 /**
  * inserts a record into database
  *
  * @param Doctrine_Record $record   record to be inserted
  * @return boolean
  */
 public function insert(Doctrine_Record $record)
 {
     // listen the onPreInsert event
     $event = new Doctrine_Event($this, Doctrine_Event::RECORD_INSERT);
     $record->preInsert($event);
     if (!$event->skipOperation) {
         $array = $record->getPrepared();
         if (empty($array)) {
             return false;
         }
         $table = $record->getTable();
         $keys = $table->getPrimaryKeys();
         $seq = $record->getTable()->sequenceName;
         if (!empty($seq)) {
             $id = $this->conn->sequence->nextId($seq);
             $name = $record->getTable()->getIdentifier();
             $array[$name] = $id;
             $record->assignIdentifier($id);
         }
         $this->conn->insert($table->getTableName(), $array);
         if (empty($seq) && count($keys) == 1 && $keys[0] == $table->getIdentifier() && $table->getIdentifierType() != Doctrine::IDENTIFIER_NATURAL) {
             if (strtolower($this->conn->getName()) == 'pgsql') {
                 $seq = $table->getTableName() . '_' . $keys[0];
             }
             $id = $this->conn->sequence->lastInsertId($seq);
             if (!$id) {
                 $id = $table->getMaxIdentifier();
             }
             $record->assignIdentifier($id);
         } else {
             $record->assignIdentifier(true);
         }
     }
     $record->getTable()->addRecord($record);
     $record->postInsert($event);
     return true;
 }
開發者ID:snouhaud,項目名稱:camptocamp.org,代碼行數:43,代碼來源:UnitOfWork.php

示例4: _assignIdentifier

 protected function _assignIdentifier(Doctrine_Record $record)
 {
     $table = $record->getTable();
     $identifier = (array) $table->getIdentifier();
     $seq = $table->sequenceName;
     if (empty($seq) && count($identifier) == 1 && $identifier[0] == $table->getIdentifier() && $table->getIdentifierType() != Doctrine_Core::IDENTIFIER_NATURAL) {
         if (($driver = strtolower($this->conn->getDriverName())) == 'pgsql') {
             $seq = $table->getTableName() . '_' . $identifier[0];
         } elseif ($driver == 'oracle') {
             $seq = $table->getTableName();
         }
         $id = $this->conn->sequence->lastInsertId($seq);
         if (!$id) {
             throw new Doctrine_Connection_Exception("Couldn't get last insert identifier.");
         }
         $record->assignIdentifier($id);
     } else {
         $record->assignIdentifier(true);
     }
 }
開發者ID:arenatournament,項目名稱:geek-land,代碼行數:20,代碼來源:UnitOfWork.php

示例5: processSingleInsert

 /**
  * @todo DESCRIBE WHAT THIS METHOD DOES, PLEASE!
  */
 public function processSingleInsert(Doctrine_Record $record)
 {
     $fields = $record->getPrepared();
     if (empty($fields)) {
         return false;
     }
     $table = $record->getTable();
     $identifier = (array) $table->getIdentifier();
     $seq = $record->getTable()->sequenceName;
     if (!empty($seq)) {
         $id = $this->conn->sequence->nextId($seq);
         $seqName = $table->getIdentifier();
         $fields[$seqName] = $id;
         $record->assignIdentifier($id);
     }
     $this->conn->insert($table, $fields);
     if (empty($seq) && count($identifier) == 1 && $identifier[0] == $table->getIdentifier() && $table->getIdentifierType() != Doctrine::IDENTIFIER_NATURAL) {
         if (strtolower($this->conn->getName()) == 'pgsql') {
             $seq = $table->getTableName() . '_' . $identifier[0];
         }
         $id = $this->conn->sequence->lastInsertId($seq);
         if (!$id) {
             throw new Doctrine_Connection_Exception("Couldn't get last insert identifier.");
         }
         $record->assignIdentifier($id);
     } else {
         $record->assignIdentifier(true);
     }
 }
開發者ID:kirvin,項目名稱:the-nerdery,代碼行數:32,代碼來源:UnitOfWork.php


注:本文中的Doctrine_Record::assignIdentifier方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。