Documentation TYPO3 par Ameos |
Public Member Functions | |
adoSchema (&$db) | |
SetUpgradeMethod ($method= '') | |
ExecuteInline ($mode=NULL) | |
ContinueOnError ($mode=NULL) | |
ParseSchema ($filename, $returnSchema=FALSE) | |
ParseSchemaFile ($filename, $returnSchema=FALSE) | |
ParseSchemaString ($xmlstring, $returnSchema=FALSE) | |
RemoveSchema ($filename, $returnSchema=FALSE) | |
RemoveSchemaString ($schema, $returnSchema=FALSE) | |
ExecuteSchema ($sqlArray=NULL, $continueOnErr=NULL) | |
PrintSQL ($format= 'NONE') | |
SaveSQL ($filename= './schema.sql') | |
& | create_parser () |
_tag_open (&$parser, $tag, $attributes) | |
_tag_cdata (&$parser, $cdata) | |
_tag_close (&$parser, $tag) | |
ConvertSchemaString ($schema, $newVersion=NULL, $newFile=NULL) | |
_file_get_contents ($path) | |
ConvertSchemaFile ($filename, $newVersion=NULL, $newFile=NULL) | |
TransformSchema ($schema, $xsl, $schematype='string') | |
xslt_error_handler ($parser, $errno, $level, $fields) | |
SchemaFileVersion ($filename) | |
SchemaStringVersion ($xmlstring) | |
ExtractSchema ($data=FALSE) | |
SetPrefix ($prefix= '', $underscore=TRUE) | |
prefix ($name= '') | |
supportedPlatform ($platform=NULL) | |
clearSQL () | |
addSQL ($sql=NULL) | |
getSQL ($format=NULL, $sqlArray=NULL) | |
Destroy () | |
adoSchema (&$db) | |
SetUpgradeMethod ($method= '') | |
ExistingData ($mode=NULL) | |
ExecuteInline ($mode=NULL) | |
ContinueOnError ($mode=NULL) | |
ParseSchema ($filename, $returnSchema=FALSE) | |
ParseSchemaFile ($filename, $returnSchema=FALSE) | |
ParseSchemaString ($xmlstring, $returnSchema=FALSE) | |
RemoveSchema ($filename, $returnSchema=FALSE) | |
RemoveSchemaString ($schema, $returnSchema=FALSE) | |
ExecuteSchema ($sqlArray=NULL, $continueOnErr=NULL) | |
PrintSQL ($format= 'NONE') | |
SaveSQL ($filename= './schema.sql') | |
& | create_parser () |
_tag_open (&$parser, $tag, $attributes) | |
_tag_cdata (&$parser, $cdata) | |
_tag_close (&$parser, $tag) | |
ConvertSchemaString ($schema, $newVersion=NULL, $newFile=NULL) | |
ConvertSchemaFile ($filename, $newVersion=NULL, $newFile=NULL) | |
TransformSchema ($schema, $xsl, $schematype='string') | |
xslt_error_handler ($parser, $errno, $level, $fields) | |
SchemaFileVersion ($filename) | |
SchemaStringVersion ($xmlstring) | |
ExtractSchema ($data=FALSE, $indent= ' ', $prefix= '', $stripprefix=false) | |
SetPrefix ($prefix= '', $underscore=TRUE) | |
prefix ($name= '') | |
supportedPlatform ($platform=NULL) | |
clearSQL () | |
addSQL ($sql=NULL) | |
getSQL ($format=NULL, $sqlArray=NULL) | |
Destroy () | |
Public Attributes | |
$sqlArray | |
$db | |
$dict | |
$currentElement = '' | |
$upgrade = '' | |
$objectPrefix = '' | |
$mgq | |
$debug | |
$versionRegex = '/<schema.*?( version="([^"]*)")?.*?>/' | |
$schemaVersion | |
$success | |
$executeInline | |
$continueOnError | |
$existingData |
Definition at line 1216 of file adodb-xmlschema.inc.php.
adoSchema::adoSchema | ( | &$ | db | ) |
Creates an adoSchema object
Creating an adoSchema object is the first step in processing an XML schema. The only parameter is an ADOdb database connection object, which must already have been created.
object | $db ADOdb database connection object. |
Definition at line 1302 of file adodb-xmlschema.inc.php.
adoSchema::SetUpgradeMethod | ( | $ | method = '' |
) |
Sets the method to be used for upgrading an existing database
Use this method to specify how existing database objects should be upgraded. The method option can be set to ALTER, REPLACE, BEST, or NONE. ALTER attempts to alter each database object directly, REPLACE attempts to rebuild each object from scratch, BEST attempts to determine the best upgrade method for each object, and NONE disables upgrading.
This method is not yet used by AXMLS, but exists for backward compatibility. The ALTER method is automatically assumed when the adoSchema object is instantiated; other upgrade methods are not currently supported.
string | $method Upgrade method (ALTER|REPLACE|BEST|NONE) |
Definition at line 1333 of file adodb-xmlschema.inc.php.
adoSchema::ExecuteInline | ( | $ | mode = NULL |
) |
Enables/disables inline SQL execution.
Call this method to enable or disable inline execution of the schema. If the mode is set to TRUE (inline execution), AXMLS applies the SQL to the database immediately as each schema entity is parsed. If the mode is set to FALSE (post execution), AXMLS parses the entire schema and you will need to call adoSchema::ExecuteSchema() to apply the schema to the database.
bool | $mode execute |
Definition at line 1375 of file adodb-xmlschema.inc.php.
adoSchema::ContinueOnError | ( | $ | mode = NULL |
) |
Enables/disables SQL continue on error.
Call this method to enable or disable continuation of SQL execution if an error occurs. If the mode is set to TRUE (continue), AXMLS will continue to apply SQL to the database, even if an error occurs. If the mode is set to FALSE (halt), AXMLS will halt execution of generated sql if an error occurs, though parsing of the schema will continue.
bool | $mode execute |
Definition at line 1396 of file adodb-xmlschema.inc.php.
adoSchema::ParseSchema | ( | $ | filename, | |
$ | returnSchema = FALSE | |||
) |
Loads an XML schema from a file and converts it to SQL.
Call this method to load the specified schema (see the DTD for the proper format) from the filesystem and generate the SQL necessary to create the database described.
string | $file Name of XML schema file. | |
bool | $returnSchema Return schema rather than parsing. |
Definition at line 1415 of file adodb-xmlschema.inc.php.
adoSchema::ParseSchemaFile | ( | $ | filename, | |
$ | returnSchema = FALSE | |||
) |
Loads an XML schema from a file and converts it to SQL.
Call this method to load the specified schema from a file (see the DTD for the proper format) and generate the SQL necessary to create the database described by the schema.
string | $file Name of XML schema file. | |
bool | $returnSchema Return schema rather than parsing. |
Definition at line 1432 of file adodb-xmlschema.inc.php.
adoSchema::ParseSchemaString | ( | $ | xmlstring, | |
$ | returnSchema = FALSE | |||
) |
Converts an XML schema string to SQL.
Call this method to parse a string containing an XML schema (see the DTD for the proper format) and generate the SQL necessary to create the database described by the schema.
string | $xmlstring XML schema string. | |
bool | $returnSchema Return schema rather than parsing. |
Definition at line 1484 of file adodb-xmlschema.inc.php.
adoSchema::RemoveSchema | ( | $ | filename, | |
$ | returnSchema = FALSE | |||
) |
Loads an XML schema from a file and converts it to uninstallation SQL.
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.
string | $file Name of XML schema file. | |
bool | $returnSchema Return schema rather than parsing. |
Definition at line 1527 of file adodb-xmlschema.inc.php.
adoSchema::RemoveSchemaString | ( | $ | schema, | |
$ | returnSchema = FALSE | |||
) |
Converts an XML schema string to uninstallation SQL.
Call this method to parse a string containing an XML schema (see the DTD for the proper format) and generate the SQL necessary to uninstall the database described by the schema.
string | $schema XML schema string. | |
bool | $returnSchema Return schema rather than parsing. |
Definition at line 1542 of file adodb-xmlschema.inc.php.
adoSchema::ExecuteSchema | ( | $ | sqlArray = NULL , |
|
$ | continueOnErr = NULL | |||
) |
Applies the current XML schema to the database (post execution).
Call this method to apply the current schema (generally created by calling ParseSchema() or ParseSchemaString() ) to the database (creating the tables, indexes, and executing other SQL specified in the schema) after parsing.
array | $sqlArray Array of SQL statements that will be applied rather than the current schema. | |
boolean | $continueOnErr Continue to apply the schema even if an error occurs. |
Definition at line 1565 of file adodb-xmlschema.inc.php.
adoSchema::PrintSQL | ( | $ | format = 'NONE' |
) |
Returns the current SQL array.
Call this method to fetch the array of SQL queries resulting from ParseSchema() or ParseSchemaString().
string | $format Format: HTML, TEXT, or NONE (PHP array) |
Definition at line 1592 of file adodb-xmlschema.inc.php.
adoSchema::SaveSQL | ( | $ | filename = './schema.sql' |
) |
Saves the current SQL array to the local filesystem as a list of SQL queries.
Call this method to save the array of SQL queries (generally resulting from a parsed XML schema) to the filesystem.
string | $filename Path and name where the file should be saved. |
Definition at line 1606 of file adodb-xmlschema.inc.php.
& adoSchema::create_parser | ( | ) |
Create an xml parser
Definition at line 1630 of file adodb-xmlschema.inc.php.
adoSchema::_tag_open | ( | &$ | parser, | |
$ | tag, | |||
$ | attributes | |||
) |
XML Callback to process start elements
private
Definition at line 1647 of file adodb-xmlschema.inc.php.
adoSchema::_tag_cdata | ( | &$ | parser, | |
$ | cdata | |||
) |
XML Callback to process CDATA elements
private
Definition at line 1670 of file adodb-xmlschema.inc.php.
adoSchema::_tag_close | ( | &$ | parser, | |
$ | tag | |||
) |
XML Callback to process end elements
private
Definition at line 1679 of file adodb-xmlschema.inc.php.
adoSchema::ConvertSchemaString | ( | $ | schema, | |
$ | newVersion = NULL , |
|||
$ | newFile = NULL | |||
) |
Converts an XML schema string to the specified DTD version.
Call this method to convert a string containing an XML schema to a different AXMLS DTD version. For instance, to convert a schema created for an pre-1.0 version for AXMLS (DTD version 0.1) to a newer version of the DTD (e.g. 0.2). If no DTD version parameter is specified, the schema will be converted to the current DTD version. If the newFile parameter is provided, the converted schema will be written to the specified file.
string | $schema String containing XML schema that will be converted. | |
string | $newVersion DTD version to convert to. | |
string | $newFile File name of (converted) output file. |
Definition at line 1699 of file adodb-xmlschema.inc.php.
adoSchema::ConvertSchemaFile | ( | $ | filename, | |
$ | newVersion = NULL , |
|||
$ | newFile = NULL | |||
) |
Converts an XML schema file to the specified DTD version.
Call this method to convert the specified XML schema file to a different AXMLS DTD version. For instance, to convert a schema created for an pre-1.0 version for AXMLS (DTD version 0.1) to a newer version of the DTD (e.g. 0.2). If no DTD version parameter is specified, the schema will be converted to the current DTD version. If the newFile parameter is provided, the converted schema will be written to the specified file.
string | $filename Name of XML schema file that will be converted. | |
string | $newVersion DTD version to convert to. | |
string | $newFile File name of (converted) output file. |
Definition at line 1747 of file adodb-xmlschema.inc.php.
adoSchema::xslt_error_handler | ( | $ | parser, | |
$ | errno, | |||
$ | level, | |||
$ | fields | |||
) |
Processes XSLT transformation errors
object | $parser XML parser object | |
integer | $errno Error number | |
integer | $level Error level | |
array | $fields Error information fields |
Definition at line 1836 of file adodb-xmlschema.inc.php.
adoSchema::SchemaFileVersion | ( | $ | filename | ) |
Returns the AXMLS Schema Version of the requested XML schema file.
Call this method to obtain the AXMLS DTD version of the requested XML schema file.
string | $filename AXMLS schema file |
Definition at line 1888 of file adodb-xmlschema.inc.php.
adoSchema::SchemaStringVersion | ( | $ | xmlstring | ) |
Returns the AXMLS Schema Version of the provided XML schema string.
Call this method to obtain the AXMLS DTD version of the provided XML schema string.
string | $xmlstring XML schema string |
Definition at line 1914 of file adodb-xmlschema.inc.php.
adoSchema::ExtractSchema | ( | $ | data = FALSE |
) |
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.
boolean | $data Include data in schema dump |
Definition at line 1936 of file adodb-xmlschema.inc.php.
adoSchema::SetPrefix | ( | $ | prefix = '' , |
|
$ | underscore = TRUE | |||
) |
Sets a prefix for database objects
Call this method to set a standard prefix that will be prepended to all database tables and indices when the schema is parsed. Calling setPrefix with no arguments clears the prefix.
string | $prefix Prefix that will be prepended. | |
boolean | $underscore If TRUE, automatically append an underscore character to the prefix. |
Definition at line 2043 of file adodb-xmlschema.inc.php.
adoSchema::prefix | ( | $ | name = '' |
) |
Returns an object name with the current prefix prepended.
string | $name Name |
Definition at line 2076 of file adodb-xmlschema.inc.php.
adoSchema::supportedPlatform | ( | $ | platform = NULL |
) |
Checks if element references a specific platform
string | $platform Requested platform |
Definition at line 2096 of file adodb-xmlschema.inc.php.
adoSchema::clearSQL | ( | ) |
adoSchema::addSQL | ( | $ | sql = NULL |
) |
Adds SQL into the SQL array.
mixed | $sql SQL to Add |
Definition at line 2125 of file adodb-xmlschema.inc.php.
References ADOConnection::outp().
adoSchema::getSQL | ( | $ | format = NULL , |
|
$ | sqlArray = NULL | |||
) |
Gets the SQL array in the specified format.
string | $format Format |
Definition at line 2167 of file adodb-xmlschema.inc.php.
adoSchema::Destroy | ( | ) |
Destroys an adoSchema object.
Call this method to clean up after an adoSchema object that is no longer in use.
Definition at line 2193 of file adodb-xmlschema.inc.php.
adoSchema::adoSchema | ( | &$ | db | ) |
Creates an adoSchema object
Creating an adoSchema object is the first step in processing an XML schema. The only parameter is an ADOdb database connection object, which must already have been created.
object | $db ADOdb database connection object. |
Definition at line 1407 of file adodb-xmlschema03.inc.php.
adoSchema::SetUpgradeMethod | ( | $ | method = '' |
) |
Sets the method to be used for upgrading an existing database
Use this method to specify how existing database objects should be upgraded. The method option can be set to ALTER, REPLACE, BEST, or NONE. ALTER attempts to alter each database object directly, REPLACE attempts to rebuild each object from scratch, BEST attempts to determine the best upgrade method for each object, and NONE disables upgrading.
This method is not yet used by AXMLS, but exists for backward compatibility. The ALTER method is automatically assumed when the adoSchema object is instantiated; other upgrade methods are not currently supported.
string | $method Upgrade method (ALTER|REPLACE|BEST|NONE) |
Definition at line 1439 of file adodb-xmlschema03.inc.php.
adoSchema::ExistingData | ( | $ | mode = NULL |
) |
Specifies how to handle existing data row when there is a unique key conflict.
The existingData setting specifies how the parser should handle existing rows when a unique key violation occurs during the insert. This can happen when inserting data into an existing table with one or more primary keys or unique indexes. The existingData method takes one of three options: XMLS_MODE_INSERT attempts to always insert the data as a new row. In the event of a unique key violation, the database will generate an error. XMLS_MODE_UPDATE attempts to update the any existing rows with the new data based upon primary or unique key fields in the schema. If the data row in the schema specifies no unique fields, the row data will be inserted as a new row. XMLS_MODE_IGNORE specifies that any data rows that would result in a unique key violation be ignored; no inserts or updates will take place. For backward compatibility, the default setting is XMLS_MODE_INSERT, but XMLS_MODE_UPDATE will generally be the most appropriate setting.
int | $mode XMLS_MODE_INSERT, XMLS_MODE_UPDATE, or XMLS_MODE_IGNORE |
Definition at line 1487 of file adodb-xmlschema03.inc.php.
adoSchema::ExecuteInline | ( | $ | mode = NULL |
) |
Enables/disables inline SQL execution.
Call this method to enable or disable inline execution of the schema. If the mode is set to TRUE (inline execution), AXMLS applies the SQL to the database immediately as each schema entity is parsed. If the mode is set to FALSE (post execution), AXMLS parses the entire schema and you will need to call adoSchema::ExecuteSchema() to apply the schema to the database.
bool | $mode execute |
Definition at line 1522 of file adodb-xmlschema03.inc.php.
adoSchema::ContinueOnError | ( | $ | mode = NULL |
) |
Enables/disables SQL continue on error.
Call this method to enable or disable continuation of SQL execution if an error occurs. If the mode is set to TRUE (continue), AXMLS will continue to apply SQL to the database, even if an error occurs. If the mode is set to FALSE (halt), AXMLS will halt execution of generated sql if an error occurs, though parsing of the schema will continue.
bool | $mode execute |
Definition at line 1543 of file adodb-xmlschema03.inc.php.
adoSchema::ParseSchema | ( | $ | filename, | |
$ | returnSchema = FALSE | |||
) |
Loads an XML schema from a file and converts it to SQL.
Call this method to load the specified schema (see the DTD for the proper format) from the filesystem and generate the SQL necessary to create the database described. This method automatically converts the schema to the latest axmls schema version.
string | $file Name of XML schema file. | |
bool | $returnSchema Return schema rather than parsing. |
Definition at line 1564 of file adodb-xmlschema03.inc.php.
adoSchema::ParseSchemaFile | ( | $ | filename, | |
$ | returnSchema = FALSE | |||
) |
Loads an XML schema from a file and converts it to SQL.
Call this method to load the specified schema directly from a file (see the DTD for the proper format) and generate the SQL necessary to create the database described by the schema. Use this method when you are dealing with large schema files. Otherwise, ParseSchema() is faster. This method does not automatically convert the schema to the latest axmls schema version. You must convert the schema manually using either the ConvertSchemaFile() or ConvertSchemaString() method.
string | $file Name of XML schema file. | |
bool | $returnSchema Return schema rather than parsing. |
Definition at line 1589 of file adodb-xmlschema03.inc.php.
adoSchema::ParseSchemaString | ( | $ | xmlstring, | |
$ | returnSchema = FALSE | |||
) |
Converts an XML schema string to SQL.
Call this method to parse a string containing an XML schema (see the DTD for the proper format) and generate the SQL necessary to create the database described by the schema.
string | $xmlstring XML schema string. | |
bool | $returnSchema Return schema rather than parsing. |
Definition at line 1641 of file adodb-xmlschema03.inc.php.
adoSchema::RemoveSchema | ( | $ | filename, | |
$ | returnSchema = FALSE | |||
) |
Loads an XML schema from a file and converts it to uninstallation SQL.
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.
string | $file Name of XML schema file. | |
bool | $returnSchema Return schema rather than parsing. |
Definition at line 1685 of file adodb-xmlschema03.inc.php.
adoSchema::RemoveSchemaString | ( | $ | schema, | |
$ | returnSchema = FALSE | |||
) |
Converts an XML schema string to uninstallation SQL.
Call this method to parse a string containing an XML schema (see the DTD for the proper format) and generate the SQL necessary to uninstall the database described by the schema.
string | $schema XML schema string. | |
bool | $returnSchema Return schema rather than parsing. |
Definition at line 1700 of file adodb-xmlschema03.inc.php.
adoSchema::ExecuteSchema | ( | $ | sqlArray = NULL , |
|
$ | continueOnErr = NULL | |||
) |
Applies the current XML schema to the database (post execution).
Call this method to apply the current schema (generally created by calling ParseSchema() or ParseSchemaString() ) to the database (creating the tables, indexes, and executing other SQL specified in the schema) after parsing.
array | $sqlArray Array of SQL statements that will be applied rather than the current schema. | |
boolean | $continueOnErr Continue to apply the schema even if an error occurs. |
Definition at line 1723 of file adodb-xmlschema03.inc.php.
adoSchema::PrintSQL | ( | $ | format = 'NONE' |
) |
Returns the current SQL array.
Call this method to fetch the array of SQL queries resulting from ParseSchema() or ParseSchemaString().
string | $format Format: HTML, TEXT, or NONE (PHP array) |
Definition at line 1750 of file adodb-xmlschema03.inc.php.
adoSchema::SaveSQL | ( | $ | filename = './schema.sql' |
) |
Saves the current SQL array to the local filesystem as a list of SQL queries.
Call this method to save the array of SQL queries (generally resulting from a parsed XML schema) to the filesystem.
string | $filename Path and name where the file should be saved. |
Definition at line 1764 of file adodb-xmlschema03.inc.php.
& adoSchema::create_parser | ( | ) |
Create an xml parser
Definition at line 1788 of file adodb-xmlschema03.inc.php.
adoSchema::_tag_open | ( | &$ | parser, | |
$ | tag, | |||
$ | attributes | |||
) |
XML Callback to process start elements
private
Definition at line 1805 of file adodb-xmlschema03.inc.php.
adoSchema::_tag_cdata | ( | &$ | parser, | |
$ | cdata | |||
) |
XML Callback to process CDATA elements
private
Definition at line 1830 of file adodb-xmlschema03.inc.php.
adoSchema::_tag_close | ( | &$ | parser, | |
$ | tag | |||
) |
XML Callback to process end elements
private
Definition at line 1839 of file adodb-xmlschema03.inc.php.
adoSchema::ConvertSchemaString | ( | $ | schema, | |
$ | newVersion = NULL , |
|||
$ | newFile = NULL | |||
) |
Converts an XML schema string to the specified DTD version.
Call this method to convert a string containing an XML schema to a different AXMLS DTD version. For instance, to convert a schema created for an pre-1.0 version for AXMLS (DTD version 0.1) to a newer version of the DTD (e.g. 0.2). If no DTD version parameter is specified, the schema will be converted to the current DTD version. If the newFile parameter is provided, the converted schema will be written to the specified file.
string | $schema String containing XML schema that will be converted. | |
string | $newVersion DTD version to convert to. | |
string | $newFile File name of (converted) output file. |
Definition at line 1859 of file adodb-xmlschema03.inc.php.
adoSchema::ConvertSchemaFile | ( | $ | filename, | |
$ | newVersion = NULL , |
|||
$ | newFile = NULL | |||
) |
Converts an XML schema file to the specified DTD version.
Call this method to convert the specified XML schema file to a different AXMLS DTD version. For instance, to convert a schema created for an pre-1.0 version for AXMLS (DTD version 0.1) to a newer version of the DTD (e.g. 0.2). If no DTD version parameter is specified, the schema will be converted to the current DTD version. If the newFile parameter is provided, the converted schema will be written to the specified file.
string | $filename Name of XML schema file that will be converted. | |
string | $newVersion DTD version to convert to. | |
string | $newFile File name of (converted) output file. |
Definition at line 1908 of file adodb-xmlschema03.inc.php.
adoSchema::xslt_error_handler | ( | $ | parser, | |
$ | errno, | |||
$ | level, | |||
$ | fields | |||
) |
Processes XSLT transformation errors
object | $parser XML parser object | |
integer | $errno Error number | |
integer | $level Error level | |
array | $fields Error information fields |
Definition at line 1997 of file adodb-xmlschema03.inc.php.
adoSchema::SchemaFileVersion | ( | $ | filename | ) |
Returns the AXMLS Schema Version of the requested XML schema file.
Call this method to obtain the AXMLS DTD version of the requested XML schema file.
string | $filename AXMLS schema file |
Definition at line 2049 of file adodb-xmlschema03.inc.php.
adoSchema::SchemaStringVersion | ( | $ | xmlstring | ) |
Returns the AXMLS Schema Version of the provided XML schema string.
Call this method to obtain the AXMLS DTD version of the provided XML schema string.
string | $xmlstring XML schema string |
Definition at line 2075 of file adodb-xmlschema03.inc.php.
adoSchema::ExtractSchema | ( | $ | data = FALSE , |
|
$ | indent = ' ' , |
|||
$ | prefix = '' , |
|||
$ | stripprefix = false | |||
) |
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.
boolean | $data Include data in schema dump string indentation to use string extract only tables with given prefix strip prefix string when storing in XML schema |
Definition at line 2100 of file adodb-xmlschema03.inc.php.
adoSchema::SetPrefix | ( | $ | prefix = '' , |
|
$ | underscore = TRUE | |||
) |
Sets a prefix for database objects
Call this method to set a standard prefix that will be prepended to all database tables and indices when the schema is parsed. Calling setPrefix with no arguments clears the prefix.
string | $prefix Prefix that will be prepended. | |
boolean | $underscore If TRUE, automatically append an underscore character to the prefix. |
Definition at line 2216 of file adodb-xmlschema03.inc.php.
adoSchema::prefix | ( | $ | name = '' |
) |
Returns an object name with the current prefix prepended.
string | $name Name |
Definition at line 2249 of file adodb-xmlschema03.inc.php.
adoSchema::supportedPlatform | ( | $ | platform = NULL |
) |
Checks if element references a specific platform
string | $platform Requested platform |
Definition at line 2269 of file adodb-xmlschema03.inc.php.
adoSchema::clearSQL | ( | ) |
Clears the array of generated SQL.
private
Definition at line 2295 of file adodb-xmlschema03.inc.php.
adoSchema::addSQL | ( | $ | sql = NULL |
) |
Adds SQL into the SQL array.
mixed | $sql SQL to Add |
Definition at line 2307 of file adodb-xmlschema03.inc.php.
References ADOConnection::outp().
adoSchema::getSQL | ( | $ | format = NULL , |
|
$ | sqlArray = NULL | |||
) |
Gets the SQL array in the specified format.
string | $format Format |
Definition at line 2349 of file adodb-xmlschema03.inc.php.
adoSchema::Destroy | ( | ) |
Destroys an adoSchema object.
Call this method to clean up after an adoSchema object that is no longer in use.
Definition at line 2375 of file adodb-xmlschema03.inc.php.