phpbb\db\extractor\mssql_extractor::write_end PHP Méthode

write_end() public méthode

Writes closing line(s) to database backup
public write_end ( ) : null
Résultat null
    public function write_end()
    {
        if (!$this->is_initialized) {
            throw new extractor_not_initialized_exception();
        }
        $this->flush("COMMIT\nGO\n");
        parent::write_end();
    }