Example #1
0
    protected function tearDown()
    {
        $this->db->exec(<<<EOT
    DELETE FROM sqlite_sequence;
EOT
);
        parent::tearDown();
    }
Example #2
0
    protected function tearDown()
    {
        if ($this->db === null) {
            return;
        }
        $this->db->exec(<<<EOT
    DELETE FROM sqlite_sequence;
EOT
);
        parent::tearDown();
    }
Example #3
0
 protected function setUp()
 {
     $this->handlerClass = 'ezcDbHandlerOracle';
     parent::setUp();
 }