adoSchema::RemoveSchema PHP Méthode

RemoveSchema() public méthode

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.
Résultat array Array of SQL queries, ready to execute
    function RemoveSchema($filename, $returnSchema = FALSE)
    {
        return $this->RemoveSchemaString($this->ConvertSchemaFile($filename), $returnSchema);
    }