adoSchema::RemoveSchema PHP Method

RemoveSchema() public method

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.
See also: RemoveSchemaString()
public RemoveSchema ( $filename, boolean $returnSchema = FALSE ) : array
$returnSchema boolean Return schema rather than parsing.
return array Array of SQL queries, ready to execute
    function RemoveSchema($filename, $returnSchema = FALSE)
    {
        return $this->RemoveSchemaString($this->ConvertSchemaFile($filename), $returnSchema);
    }