• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Schema\SchemaConfig类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中Doctrine\DBAL\Schema\SchemaConfig的典型用法代码示例。如果您正苦于以下问题:PHP SchemaConfig类的具体用法?PHP SchemaConfig怎么用?PHP SchemaConfig使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



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

示例1: __construct

 /**
  * @param \OCP\IConfig $config
  * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform
  */
 public function __construct(IConfig $config, AbstractPlatform $platform)
 {
     $this->platform = $platform;
     $this->DBNAME = $config->getSystemValue('dbname', 'owncloud');
     $this->DBTABLEPREFIX = $config->getSystemValue('dbtableprefix', 'oc_');
     // Oracle does not support longer index names then 30 characters.
     // We use this limit for all DBs to make sure it does not cause a
     // problem.
     $this->schemaConfig = new SchemaConfig();
     $this->schemaConfig->setMaxIdentifierLength(30);
 }
开发者ID:GitHubUser4234,项目名称:core,代码行数:15,代码来源:MDB2SchemaReader.php


示例2: __construct

 /**
  * @param \Doctrine\DBAL\Schema\Table[]      $tables
  * @param \Doctrine\DBAL\Schema\Sequence[]   $sequences
  * @param \Doctrine\DBAL\Schema\SchemaConfig $schemaConfig
  */
 public function __construct(array $tables = array(), array $sequences = array(), SchemaConfig $schemaConfig = null)
 {
     if ($schemaConfig == null) {
         $schemaConfig = new SchemaConfig();
     }
     $this->_schemaConfig = $schemaConfig;
     $this->_setName($schemaConfig->getName() ?: 'public');
     foreach ($tables as $table) {
         $this->_addTable($table);
     }
     foreach ($sequences as $sequence) {
         $this->_addSequence($sequence);
     }
 }
开发者ID:neteasy-work,项目名称:hkgbf_crm,代码行数:19,代码来源:Schema.php


示例3: testCleanupForeignKeysDifferentOrder

 /**
  * @group DBAL-204
  */
 public function testCleanupForeignKeysDifferentOrder()
 {
     $config = new SchemaConfig();
     $config->setName("test");
     $schema = new Schema(array(), array(), $config);
     $testTable = $schema->createTable("test.test");
     $testTable->addColumn('id', 'integer');
     $fooTable = $schema->createTable("foo.bar");
     $fooTable->addColumn('id', 'integer');
     $testTable->addForeignKeyConstraint("foo.bar", array("id"), array("id"));
     $schema->visit(new RemoveNamespacedAssets());
     $sql = $schema->toSql(new MySqlPlatform());
     $this->assertEquals(1, count($sql), "Just one CREATE TABLE statement, no foreign key and table to foo.bar");
 }
开发者ID:Werelds,项目名称:FrameworkBenchmarks,代码行数:17,代码来源:RemoveNamespacedAssetsTest.php


示例4: _getMaxIdentifierLength

 /**
  * @return int
  */
 protected function _getMaxIdentifierLength()
 {
     if ($this->_schemaConfig instanceof SchemaConfig) {
         return $this->_schemaConfig->getMaxIdentifierLength();
     } else {
         return 63;
     }
 }
开发者ID:michaelnavarro,项目名称:zc,代码行数:11,代码来源:Table.php


示例5: createSchemaConfig

 /**
  * Create the configuration for this schema.
  *
  * @return SchemaConfig
  */
 public function createSchemaConfig()
 {
     $schemaConfig = new SchemaConfig();
     $schemaConfig->setMaxIdentifierLength($this->_platform->getMaxIdentifierLength());
     return $schemaConfig;
 }
开发者ID:jff15,项目名称:travelbot,代码行数:11,代码来源:AbstractSchemaManager.php


示例6: testFqnSchemaComparisionNoSchemaSame

 /**
  * @group DBAL-204
  */
 public function testFqnSchemaComparisionNoSchemaSame()
 {
     $config = new SchemaConfig();
     $config->setName("foo");
     $oldSchema = new Schema(array(), array(), $config);
     $oldSchema->createTable('bar');
     $newSchema = new Schema();
     $newSchema->createTable('bar');
     $c = new Comparator();
     $diff = $c->compare($oldSchema, $newSchema);
     $this->assertEquals(new SchemaDiff(), $c->compare($oldSchema, $newSchema));
 }
开发者ID:llinder,项目名称:FrameworkBenchmarks,代码行数:15,代码来源:ComparatorTest.php


示例7: createSchemaConfig

 /**
  * Creates the configuration for this schema.
  *
  * @return \Doctrine\DBAL\Schema\SchemaConfig
  */
 public function createSchemaConfig()
 {
     $schemaConfig = new SchemaConfig();
     $schemaConfig->setMaxIdentifierLength($this->_platform->getMaxIdentifierLength());
     $searchPaths = $this->getSchemaSearchPaths();
     if (isset($searchPaths[0])) {
         $schemaConfig->setName($searchPaths[0]);
     }
     $params = $this->_conn->getParams();
     if (isset($params['defaultTableOptions'])) {
         $schemaConfig->setDefaultTableOptions($params['defaultTableOptions']);
     }
     return $schemaConfig;
 }
开发者ID:tamboer,项目名称:LaravelOctober,代码行数:19,代码来源:AbstractSchemaManager.php


示例8: checkTableMigrate

 /**
  * Check the migration of a table on a copy so we can detect errors before messing with the real table
  *
  * @param \Doctrine\DBAL\Schema\Table $table
  * @throws \OC\DB\MigrationException
  */
 protected function checkTableMigrate(Table $table)
 {
     $name = $table->getName();
     $tmpName = $this->generateTemporaryTableName($name);
     $this->copyTable($name, $tmpName);
     //create the migration schema for the temporary table
     $tmpTable = $this->renameTableSchema($table, $tmpName);
     $schemaConfig = new SchemaConfig();
     $schemaConfig->setName($this->connection->getDatabase());
     $schema = new Schema(array($tmpTable), array(), $schemaConfig);
     try {
         $this->applySchema($schema);
         $this->dropTable($tmpName);
     } catch (DBALException $e) {
         // pgsql needs to commit it's failed transaction before doing anything else
         if ($this->connection->isTransactionActive()) {
             $this->connection->commit();
         }
         $this->dropTable($tmpName);
         throw new MigrationException($table->getName(), $e->getMessage());
     }
 }
开发者ID:drognisep,项目名称:Portfolio-Site,代码行数:28,代码来源:Migrator.php


示例9: getSchemaConfig

	private function getSchemaConfig() {
		$config = new SchemaConfig();
		$config->setName($this->connection->getDatabase());
		return $config;
	}
开发者ID:ninjasilicon,项目名称:core,代码行数:5,代码来源:migrator.php


示例10: createSchemaConfig

 /**
  * Create the configuration for this schema.
  *
  * @return SchemaConfig
  */
 public function createSchemaConfig()
 {
     $schemaConfig = new SchemaConfig();
     $schemaConfig->setExplicitForeignKeyIndexes($this->_platform->createsExplicitIndexForForeignKeys());
     $schemaConfig->setMaxIdentifierLength($this->_platform->getMaxIdentifierLength());
     return $schemaConfig;
 }
开发者ID:jacques-sounvi,项目名称:addressbook,代码行数:12,代码来源:AbstractSchemaManager.php


示例11: createSchemaConfig

 /**
  * Create the configuration for this schema.
  *
  * @return SchemaConfig
  */
 public function createSchemaConfig()
 {
     $schemaConfig = new SchemaConfig();
     $schemaConfig->setMaxIdentifierLength($this->_platform->getMaxIdentifierLength());
     $searchPaths = $this->getSchemaSearchPaths();
     if (isset($searchPaths[0])) {
         $schemaConfig->setName($searchPaths[0]);
     }
     return $schemaConfig;
 }
开发者ID:pollux1er,项目名称:dlawebdev2,代码行数:15,代码来源:AbstractSchemaManager.php


示例12: testFqnSchemaComparisionNoSchemaSame

 /**
  * @group DBAL-204
  */
 public function testFqnSchemaComparisionNoSchemaSame()
 {
     $config = new SchemaConfig();
     $config->setName("foo");
     $oldSchema = new Schema(array(), array(), $config);
     $oldSchema->createTable('bar');
     $newSchema = new Schema();
     $newSchema->createTable('bar');
     $expected = new SchemaDiff();
     $expected->fromSchema = $oldSchema;
     $this->assertEquals($expected, Comparator::compareSchemas($oldSchema, $newSchema));
 }
开发者ID:selimcr,项目名称:servigases,代码行数:15,代码来源:ComparatorTest.php


示例13: createTable

 /**
  * Creates a new table.
  *
  * @param string $tableName
  *
  * @return \Doctrine\DBAL\Schema\Table
  */
 public function createTable($tableName)
 {
     $table = new Table($tableName);
     $this->_addTable($table);
     foreach ($this->_schemaConfig->getDefaultTableOptions() as $name => $value) {
         $table->addOption($name, $value);
     }
     return $table;
 }
开发者ID:neteasy-work,项目名称:hkgbf_crm,代码行数:16,代码来源:Schema.php


示例14: hasExplicitForeignKeyIndexes

 /**
  * @return bool
  */
 public function hasExplicitForeignKeyIndexes()
 {
     return $this->_schemaConfig->hasExplicitForeignKeyIndexes();
 }
开发者ID:ncud,项目名称:sagalaya,代码行数:7,代码来源:Schema.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Schema\Sequence类代码示例发布时间:2022-05-23
下一篇:
PHP Schema\Schema类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap