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


PHP AbstractPlatform::supportsForeignKeyConstraints方法代码示例

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


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

示例1: acceptForeignKey

 /**
  * @param Table $localTable
  * @param ForeignKeyConstraint $fkConstraint
  */
 public function acceptForeignKey(Table $localTable, ForeignKeyConstraint $fkConstraint)
 {
     $namespace = $this->getNamespace($localTable);
     if ($this->_platform->supportsForeignKeyConstraints()) {
         $this->_createFkConstraintQueries[$namespace] = array_merge($this->_createFkConstraintQueries[$namespace], (array) $this->_platform->getCreateForeignKeySQL($fkConstraint, $localTable));
     }
 }
开发者ID:jeanlopes,项目名称:mostra-ifrs-poa,代码行数:11,代码来源:CreateSchemaSqlCollector.php

示例2: acceptForeignKey

 /**
  * @param Table $localTable
  * @param ForeignKeyConstraint $fkConstraint
  */
 public function acceptForeignKey(Table $localTable, ForeignKeyConstraint $fkConstraint)
 {
     // Append the foreign key constraints SQL
     if ($this->_platform->supportsForeignKeyConstraints()) {
         $this->_createFkConstraintQueries = array_merge($this->_createFkConstraintQueries, (array) $this->_platform->getCreateForeignKeySQL($fkConstraint, $localTable->getName()));
     }
 }
开发者ID:poulikov,项目名称:readlater,代码行数:11,代码来源:CreateSchemaSqlCollector.php

示例3: listTableDetails

 /**
  * @param  string $tableName
  * @return Table
  */
 public function listTableDetails($tableName)
 {
     $columns = $this->listTableColumns($tableName);
     $foreignKeys = array();
     if ($this->_platform->supportsForeignKeyConstraints()) {
         $foreignKeys = $this->listTableForeignKeys($tableName);
     }
     $indexes = $this->listTableIndexes($tableName);
     return new Table($tableName, $columns, $indexes, $foreignKeys, false, array());
 }
开发者ID:jff15,项目名称:travelbot,代码行数:14,代码来源:AbstractSchemaManager.php

示例4: testGeneratesForeignKeySqlOnlyWhenSupportingForeignKeys

 public function testGeneratesForeignKeySqlOnlyWhenSupportingForeignKeys()
 {
     $fk = new \Doctrine\DBAL\Schema\ForeignKeyConstraint(array('fk_name'), 'foreign', array('id'), 'constraint_fk');
     if ($this->_platform->supportsForeignKeyConstraints()) {
         $this->assertInternalType('string', $this->_platform->getCreateForeignKeySQL($fk, 'test'));
     } else {
         $this->setExpectedException('Doctrine\\DBAL\\DBALException');
         $this->_platform->getCreateForeignKeySQL($fk, 'test');
     }
 }
开发者ID:pnaq57,项目名称:zf2demo,代码行数:10,代码来源:AbstractPlatformTestCase.php

示例5: listTableDetails

 /**
  * @param  string $tableName
  * @return Table
  */
 public function listTableDetails($tableName)
 {
     $columns = $this->listTableColumns($tableName);
     $foreignKeys = array();
     if ($this->_platform->supportsForeignKeyConstraints()) {
         $foreignKeys = $this->listTableForeignKeys($tableName);
     }
     $indexes = $this->listTableIndexes($tableName);
     $idGeneratorType = Table::ID_NONE;
     foreach ($columns as $column) {
         if ($column->hasPlatformOption('autoincrement') && $column->getPlatformOption('autoincrement')) {
             $idGeneratorType = Table::ID_IDENTITY;
         }
     }
     return new Table($tableName, $columns, $indexes, $foreignKeys, $idGeneratorType, array());
 }
开发者ID:jacques-sounvi,项目名称:addressbook,代码行数:20,代码来源:AbstractSchemaManager.php

示例6: _toSql

 /**
  * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform
  * @param boolean                                   $saveMode
  *
  * @return array
  */
 protected function _toSql(AbstractPlatform $platform, $saveMode = false)
 {
     $sql = array();
     if ($platform->supportsSchemas()) {
         foreach ($this->newNamespaces as $newNamespace) {
             $sql[] = $platform->getCreateSchemaSQL($newNamespace);
         }
     }
     if ($platform->supportsForeignKeyConstraints() && $saveMode == false) {
         foreach ($this->orphanedForeignKeys as $orphanedForeignKey) {
             $sql[] = $platform->getDropForeignKeySQL($orphanedForeignKey, $orphanedForeignKey->getLocalTableName());
         }
     }
     if ($platform->supportsSequences() == true) {
         foreach ($this->changedSequences as $sequence) {
             $sql[] = $platform->getAlterSequenceSQL($sequence);
         }
         if ($saveMode === false) {
             foreach ($this->removedSequences as $sequence) {
                 $sql[] = $platform->getDropSequenceSQL($sequence);
             }
         }
         foreach ($this->newSequences as $sequence) {
             $sql[] = $platform->getCreateSequenceSQL($sequence);
         }
     }
     $foreignKeySql = array();
     foreach ($this->newTables as $table) {
         $sql = array_merge($sql, $platform->getCreateTableSQL($table, AbstractPlatform::CREATE_INDEXES));
         if ($platform->supportsForeignKeyConstraints()) {
             foreach ($table->getForeignKeys() as $foreignKey) {
                 $foreignKeySql[] = $platform->getCreateForeignKeySQL($foreignKey, $table);
             }
         }
     }
     $sql = array_merge($sql, $foreignKeySql);
     if ($saveMode === false) {
         foreach ($this->removedTables as $table) {
             $sql[] = $platform->getDropTableSQL($table);
         }
     }
     foreach ($this->changedTables as $tableDiff) {
         $sql = array_merge($sql, $platform->getAlterTableSQL($tableDiff));
     }
     return $sql;
 }
开发者ID:Kevin-ZK,项目名称:vaneDisk,代码行数:52,代码来源:SchemaDiff.php

示例7: acceptForeignKey

 /**
  * {@inheritdoc}
  */
 public function acceptForeignKey(Table $localTable, ForeignKeyConstraint $fkConstraint)
 {
     if ($this->platform->supportsForeignKeyConstraints()) {
         $this->createFkConstraintQueries = array_merge($this->createFkConstraintQueries, (array) $this->platform->getCreateForeignKeySQL($fkConstraint, $localTable));
     }
 }
开发者ID:BusinessCookies,项目名称:CoffeeMachineProject,代码行数:9,代码来源:CreateSchemaSqlCollector.php


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