<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://www.adodb.org/dokuwiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://www.adodb.org/dokuwiki/feed.php">
        <title>ADOdb - v5:userguide:learn_dictionary</title>
        <description>Database Abstraction Layer for PHP</description>
        <link>https://www.adodb.org/dokuwiki/</link>
        <image rdf:resource="https://www.adodb.org/dokuwiki/lib/exe/fetch.php?media=logo.png" />
       <dc:date>2026-05-17T02:42:57+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:introduction&amp;rev=1458172331&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:metacolumns&amp;rev=1458482737&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:metatypes&amp;rev=1773424591&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:other_metafunctions&amp;rev=1528704584&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:start_lesson&amp;rev=1458088531&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://www.adodb.org/dokuwiki/lib/exe/fetch.php?media=logo.png">
        <title>ADOdb</title>
        <link>https://www.adodb.org/dokuwiki/</link>
        <url>https://www.adodb.org/dokuwiki/lib/exe/fetch.php?media=logo.png</url>
    </image>
    <item rdf:about="https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:introduction&amp;rev=1458172331&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2016-03-16T23:52:11+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>The Data Dictionary</title>
        <link>https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:introduction&amp;rev=1458172331&amp;do=diff</link>
        <description>The Data Dictionary

This lesson teaches an understanding of the basics of the Data Dictionary</description>
    </item>
    <item rdf:about="https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:metacolumns&amp;rev=1458482737&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2016-03-20T14:05:37+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>MetaColumns</title>
        <link>https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:metacolumns&amp;rev=1458482737&amp;do=diff</link>
        <description>MetaTypes Start Of Lesson Other MetaFunctions 


MetaColumns

The metaColumns method returns an array of adoFieldObject objects that represent the attributes of the columns of a specified table.


$m = $db-&gt;metaColumns(&#039;my_table&#039;);

print_r($m);

adoFieldObject Object
(
  [name] =&gt; actno
  [max_length] =&gt; 8
  [type] =&gt; INT
)

adoFieldObject Object
(
  [name] =&gt; actname
  [max_length] =&gt; 30
  [type] =&gt; VARCHAR
)</description>
    </item>
    <item rdf:about="https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:metatypes&amp;rev=1773424591&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-13T17:56:31+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>The MetaType</title>
        <link>https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:metatypes&amp;rev=1773424591&amp;do=diff</link>
        <description>Introduction Start Of Lesson MetaColumns 


The MetaType

The lowest level of information that ADOdb supports is the MetaType. This object represents the type of field in a consistent, simplified format.

Actual Types

Data is stored in the database in fields that best represent the type of data, e.g. Integer, character, floating point. These types may be subclassed further, e.g Small,Medium,Large integers. In addition, there may be estoric field types such as geometry, points etc. ADOdb refers …</description>
    </item>
    <item rdf:about="https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:other_metafunctions&amp;rev=1528704584&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2018-06-11T08:09:44+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Other MetaFunctions</title>
        <link>https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:other_metafunctions&amp;rev=1528704584&amp;do=diff</link>
        <description>MetaColumns Start Of Lesson Other MetaFunctions


Other MetaFunctions

metaTables()

The method metaTables() returns a list of the tables in the database. In some databases, the values returned by the method may be restricted based on built-in security in the DBMS.


$ar = $db-&gt;metaTables(&#039;TABLES&#039;);
/*
 * $ar returns:
  [0] =&gt; DEPT
  [1] =&gt; EMP
  [2] =&gt; EMPACT
  [3] =&gt; EMP_ACT
  [4] =&gt; PROJ
  [5] =&gt; ADEFUSR
  ......</description>
    </item>
    <item rdf:about="https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:start_lesson&amp;rev=1458088531&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2016-03-16T00:35:31+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Introduction</title>
        <link>https://www.adodb.org/dokuwiki/doku.php?id=v5:userguide:learn_dictionary:start_lesson&amp;rev=1458088531&amp;do=diff</link>
        <description>Start Of Lesson Start Of Lesson MetaTypes 


Introduction

ADOdb provides numerous methods that allow the interrogation of the structure of the database  from the database level all the way down to the field object. It does so in a way that offers the following assistance:

	*  Provides a simple, consistent interface to the information</description>
    </item>
</rdf:RDF>
