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


PHP Table::setSkipSql方法代码示例

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


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

示例1: testValidateReturnsTrueWhenTableHasNoPkButIsAView

 public function testValidateReturnsTrueWhenTableHasNoPkButIsAView()
 {
     $table = new Table('foo');
     $table->setSkipSql(true);
     $appData = $this->getAppDataForTable($table);
     $validator = new SchemaValidator($appData);
     $this->assertTrue($validator->validate());
 }
开发者ID:rouffj,项目名称:Propel2,代码行数:8,代码来源:SchemaValidatorTest.php

示例2: testSetSkipSql

 public function testSetSkipSql()
 {
     $table = new Table('books');
     $table->setSkipSql(true);
     $this->assertTrue($table->isSkipSql());
 }
开发者ID:dracony,项目名称:forked-php-orm-benchmark,代码行数:6,代码来源:TableTest.php

示例3: testCompareRemovedTableSkipSql

 public function testCompareRemovedTableSkipSql()
 {
     $d1 = new Database();
     $t1 = new Table('Foo_Table');
     $c1 = new Column('Foo');
     $c1->getDomain()->copy($this->platform->getDomainForType('DOUBLE'));
     $c1->getDomain()->replaceScale(2);
     $c1->getDomain()->replaceSize(3);
     $c1->setNotNull(true);
     $c1->getDomain()->setDefaultValue(new ColumnDefaultValue(123, ColumnDefaultValue::TYPE_VALUE));
     $t1->addColumn($c1);
     $d1->addTable($t1);
     $t2 = new Table('Bar');
     $t2->setSkipSql(true);
     $d1->addTable($t2);
     $d2 = new Database();
     $t3 = new Table('Foo_Table');
     $c3 = new Column('Foo');
     $c3->getDomain()->copy($this->platform->getDomainForType('DOUBLE'));
     $c3->getDomain()->replaceScale(2);
     $c3->getDomain()->replaceSize(3);
     $c3->setNotNull(true);
     $c3->getDomain()->setDefaultValue(new ColumnDefaultValue(123, ColumnDefaultValue::TYPE_VALUE));
     $t3->addColumn($c3);
     $d2->addTable($t3);
     $dc = new DatabaseComparator();
     $dc->setFromDatabase($d1);
     $dc->setToDatabase($d2);
     $nbDiffs = $dc->compareTables();
     $databaseDiff = $dc->getDatabaseDiff();
     $this->assertEquals(0, $nbDiffs);
 }
开发者ID:rouffj,项目名称:Propel2,代码行数:32,代码来源:PropelDatabaseTableComparatorTest.php


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