This is an old revision of the document!
extractSchema
See Also
Syntax
string extractSchema ( optional bool $includeData = false, optional string $indent = ' ', optional string $prefix = '', optional bool $stripprefix = false )
Description
Extracts an XML schema from an existing database.
Call this method to create an XML schema string from an existing database. If the data parameter is set to TRUE, AXMLS will include the data from the database in the schema.
The method returns a generated XML schema.
Parameters
$includeData
Include data from the database in schema dump. There are a number of issues that affect the successful outcome of use of this option:
- The size of the tables being dumped
- The database in use
- PHP memory configuration.
Because the method results in the entire database being held in a single string variable, a good rule of thumb is that if a single table contains more than 1,000 records then it would be more appropriate to consider use of a database specific data dump utility.
$indent
The indentation character to use. The default value is ' '(space). Other alternatives might be “\t” (tab).
$prefix
Only match tables with this prefix. Patten match wildcards are not supported by this option.
$stripprefix
strip prefix string when storing in XML schema. This option works in conjunction with the $prefix option. For example, if required table names were all prefixed with e.g. 'abc_', then selecting 'abc_' would only retrieve those tables, and setting this option to true would remove that option before saving the data.
Return
The method returns a string containing the schema, and if requested, the data inside the tables.
Database Migration
For small databases, use of this method paired with parseSchemaFile() provides an easy to use database schema and data migration tool.