API16:JDatabaseMySQL/getTableCreate
From Joomla! Documentation
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/mysql.php
Importing
jimport( 'joomla.database.database.mysql' );
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
Code Examples