JDatabaseMySQLi/getTableCreate: Difference between revisions
From Joomla! Documentation
m removing red link to edit, no existant pages |
m clean up |
||
| Line 2: | Line 2: | ||
Shows the CREATE TABLE statement that creates the given tables | Shows the CREATE TABLE statement that creates the given tables | ||
<! removed transcluded page call, red link never existed > | <! removed transcluded page call, red link never existed > | ||
| Line 49: | Line 47: | ||
</source> | </source> | ||
<! removed transcluded page call, red link never existed > | <! removed transcluded page call, red link never existed > | ||
Revision as of 13:48, 24 March 2017
Description
Shows the CREATE TABLE statement that creates the given tables
<! removed transcluded page call, red link never existed >
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
public 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;
}
<! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />