当前位置: 首页>>代码示例>>PHP>>正文


PHP DB::get_generated_id方法代码示例

本文整理汇总了PHP中SilverStripe\ORM\DB::get_generated_id方法的典型用法代码示例。如果您正苦于以下问题:PHP DB::get_generated_id方法的具体用法?PHP DB::get_generated_id怎么用?PHP DB::get_generated_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SilverStripe\ORM\DB的用法示例。


在下文中一共展示了DB::get_generated_id方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: writeBaseRecord

 /**
  * Ensures that a blank base record exists with the basic fixed fields for this dataobject
  *
  * Does nothing if an ID is already assigned for this record
  *
  * @param string $baseTable Base table
  * @param string $now Timestamp to use for the current time
  */
 protected function writeBaseRecord($baseTable, $now)
 {
     // Generate new ID if not specified
     if ($this->isInDB()) {
         return;
     }
     // Perform an insert on the base table
     $insert = new SQLInsert('"' . $baseTable . '"');
     $insert->assign('"Created"', $now)->execute();
     $this->changed['ID'] = self::CHANGE_VALUE;
     $this->record['ID'] = DB::get_generated_id($baseTable);
 }
开发者ID:SpiritLevel,项目名称:silverstripe-framework,代码行数:20,代码来源:DataObject.php

示例2: createRaw

 /**
  * Writes the fixture into the database directly using a database manipulation.
  * Does not use blueprints. Only supports tables with a primary key.
  *
  * @param String $table Existing database table name
  * @param String $identifier Unique identifier for this fixture type
  * @param Array $data Map of properties
  * @return Int Database identifier
  */
 public function createRaw($table, $identifier, $data)
 {
     $fields = array();
     foreach ($data as $fieldName => $fieldVal) {
         $fields["\"{$fieldName}\""] = $this->parseValue($fieldVal);
     }
     $insert = new SQLInsert("\"{$table}\"", $fields);
     $insert->execute();
     $id = DB::get_generated_id($table);
     $this->fixtures[$table][$identifier] = $id;
     return $id;
 }
开发者ID:jacobbuck,项目名称:silverstripe-framework,代码行数:21,代码来源:FixtureFactory.php


注:本文中的SilverStripe\ORM\DB::get_generated_id方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。