コード例 #1
0
ファイル: sqlite.php プロジェクト: jacomyma/GEXF-Atlas
    protected function tearDown()
    {
        $this->db->exec(<<<EOT
    DELETE FROM sqlite_sequence;
EOT
);
        parent::tearDown();
    }
コード例 #2
0
ファイル: sqlite.php プロジェクト: oandre/database
    protected function tearDown()
    {
        if ($this->db === null) {
            return;
        }
        $this->db->exec(<<<EOT
    DELETE FROM sqlite_sequence;
EOT
);
        parent::tearDown();
    }
コード例 #3
0
ファイル: oracle.php プロジェクト: oandre/database
 protected function setUp()
 {
     $this->handlerClass = 'ezcDbHandlerOracle';
     parent::setUp();
 }