API15:JDatabaseMySQLi/getTableCreate
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Shows the CREATE TABLE statement that creates the given tables
Description:JDatabaseMySQLi/getTableCreate
Syntax
getTableCreate($tables)
| Parameter Name | Default Value | Description |
|---|---|---|
| $tables | A table name or a list of table names |
Returns
array A list the create SQL for the tables
Defined in
libraries/joomla/database/database/mysqli.php
Importing
jimport( 'joomla.database.database.mysqli' );
Source Body
function getTableCreate( $tables ) { settype($tables, 'array'); //force to array $result = array(); foreach ($tables as $tblval) { $this->setQuery( 'SHOW CREATE table ' . $this->getEscaped( $tblval ) ); $rows = $this->loadRowList(); foreach ($rows as $row) { $result[$tblval] = $row[1]; } } return $result; }
[Edit See Also] SeeAlso:JDatabaseMySQLi/getTableCreate
Examples
<CodeExamplesForm />
