コード例 #1
0
 public function testDropNotAnnotatedTestTableIfExistsSQL()
 {
     $sql = $this->notAnnotatedTableData->getDropTableSQL();
     $this->assertEqualsFixture($sql, __FUNCTION__);
     $this->runQuery($sql);
 }
コード例 #2
0
ファイル: Dao.php プロジェクト: netbrain/simphple-orm
 public function dropTable()
 {
     $this->runQuery($this->table->getDropTableSQL());
 }