adoSchema::RemoveSchema PHP Метод

RemoveSchema() публичный Метод

Call this method to load the specified schema (see the DTD for the proper format) from the filesystem and generate the SQL necessary to remove the database described.
См. также: RemoveSchemaString()
public RemoveSchema ( $filename, boolean $returnSchema = FALSE ) : array
$returnSchema boolean Return schema rather than parsing.
Результат array Array of SQL queries, ready to execute
    function RemoveSchema($filename, $returnSchema = FALSE)
    {
        return $this->RemoveSchemaString($this->ConvertSchemaFile($filename), $returnSchema);
    }