API16

JDatabaseMySQL/getTableFields: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m clean up
Line 2: Line 2:
Retrieves information about the given tables
Retrieves information about the given tables


<span class="editsection" style="font-size:76%;">
 
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>


<! removed transcluded page call, red link never existed >
<! removed transcluded page call, red link never existed >
Line 60: Line 58:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
<! removed transcluded page call, red link never existed >
<! removed transcluded page call, red link never existed >



Revision as of 13:47, 24 March 2017

Description

Retrieves information about the given tables


<! removed transcluded page call, red link never existed >

Syntax

getTableFields($tables, $typeonly=true)
Parameter Name Default Value Description
$tables A table name or a list of table names
$typeonly true Only return field types, default true

Returns

array An array of fields by table

Defined in

libraries/joomla/database/database/mysql.php

Importing

jimport( 'joomla.database.database.mysql' );

Source Body

public function getTableFields($tables, $typeonly = true)
{
        settype($tables, 'array'); //force to array
        $result = array();

        foreach ($tables as $tblval) {
                $this->setQuery('SHOW FIELDS FROM ' . $tblval);
                $fields = $this->loadObjectList();

                if ($typeonly) {
                        foreach ($fields as $field) {
                                $result[$tblval][$field->Field] = preg_replace("/[(0-9)]/",'', $field->Type);
                        }
                } else {
                        foreach ($fields as $field) {
                                $result[$tblval][$field->Field] = $field;
                        }
                }
        }

        return $result;
}


<! removed transcluded page call, red link never existed >

Examples

<CodeExamplesForm />