MDB2
[ class tree: MDB2 ] [ index: MDB2 ] [ all elements ]

Source for file ibase.php

Documentation is available at ibase.php

  1. <?php
  2. // +----------------------------------------------------------------------+
  3. // | PHP versions 4 and 5                                                 |
  4. // +----------------------------------------------------------------------+
  5. // | Copyright (c) 1998-2007 Manuel Lemos, Tomas V.V.Cox,                 |
  6. // | Stig. S. Bakken, Lukas Smith, Frank M. Kromann, Lorenzo Alberton     |
  7. // | All rights reserved.                                                 |
  8. // +----------------------------------------------------------------------+
  9. // | MDB2 is a merge of PEAR DB and Metabases that provides a unified DB  |
  10. // | API as well as database abstraction for PHP applications.            |
  11. // | This LICENSE is in the BSD license style.                            |
  12. // |                                                                      |
  13. // | Redistribution and use in source and binary forms, with or without   |
  14. // | modification, are permitted provided that the following conditions   |
  15. // | are met:                                                             |
  16. // |                                                                      |
  17. // | Redistributions of source code must retain the above copyright       |
  18. // | notice, this list of conditions and the following disclaimer.        |
  19. // |                                                                      |
  20. // | Redistributions in binary form must reproduce the above copyright    |
  21. // | notice, this list of conditions and the following disclaimer in the  |
  22. // | documentation and/or other materials provided with the distribution. |
  23. // |                                                                      |
  24. // | Neither the name of Manuel Lemos, Tomas V.V.Cox, Stig. S. Bakken,    |
  25. // | Lukas Smith nor the names of his contributors may be used to endorse |
  26. // | or promote products derived from this software without specific prior|
  27. // | written permission.                                                  |
  28. // |                                                                      |
  29. // | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS  |
  30. // | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT    |
  31. // | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS    |
  32. // | FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE      |
  33. // | REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,          |
  34. // | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
  35. // | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS|
  36. // |  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED  |
  37. // | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT          |
  38. // | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY|
  39. // | WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE          |
  40. // | POSSIBILITY OF SUCH DAMAGE.                                          |
  41. // +----------------------------------------------------------------------+
  42. // | Author: Lorenzo Alberton <l.alberton@quipo.it>                       |
  43. // +----------------------------------------------------------------------+
  44. //
  45. // $Id: ibase.php,v 1.70 2007/05/03 12:34:41 quipo Exp $
  46. //
  47.  
  48. require_once 'MDB2/Driver/Reverse/Common.php';
  49.  
  50. /**
  51.  * MDB2 InterbaseBase driver for the reverse engineering module
  52.  *
  53.  * @package MDB2
  54.  * @category Database
  55.  * @author Lorenzo Alberton  <l.alberton@quipo.it>
  56.  */
  57. class MDB2_Driver_Reverse_ibase extends MDB2_Driver_Reverse_Common
  58. {
  59.     /**
  60.      * Array for converting constant values to text values
  61.      * @var    array 
  62.      * @access public
  63.      */
  64.     var $types = array(
  65.         7   => 'smallint',
  66.         8   => 'integer',
  67.         9   => 'quad',
  68.         10  => 'float',
  69.         11  => 'd_float',
  70.         12  => 'date',      //dialect 3 DATE
  71.         13  => 'time',
  72.         14  => 'char',
  73.         16  => 'int64',
  74.         27  => 'double',
  75.         35  => 'timestamp'//DATE in older versions
  76.         37  => 'varchar',
  77.         40  => 'cstring',
  78.         261 => 'blob',
  79.     );
  80.  
  81.     /**
  82.      * Array for converting constant values to text values
  83.      * @var    array 
  84.      * @access public
  85.      */
  86.     var $subtypes = array(
  87.         //char subtypes
  88.         14 => array(
  89.             0 => 'unspecified',
  90.             1 => 'fixed'//BINARY data
  91.         ),
  92.         //blob subtypes
  93.         261 => array(
  94.             0 => 'unspecified',
  95.             1 => 'text',
  96.             2 => 'BLR'//Binary Language Representation
  97.             3 => 'access control list',
  98.             4 => 'reserved for future use',
  99.             5 => 'encoded description of a table\'s current metadata',
  100.             6 => 'description of multi-database transaction that finished irregularly',
  101.         ),
  102.         //smallint subtypes
  103.         7 => array(
  104.             0 => 'RDB$FIELD_TYPE',
  105.             1 => 'numeric',
  106.             2 => 'decimal',
  107.         ),
  108.         //integer subtypes
  109.         8 => array(
  110.             0 => 'RDB$FIELD_TYPE',
  111.             1 => 'numeric',
  112.             2 => 'decimal',
  113.         ),
  114.         //int64 subtypes
  115.         16 => array(
  116.             0 => 'RDB$FIELD_TYPE',
  117.             1 => 'numeric',
  118.             2 => 'decimal',
  119.         ),
  120.     );
  121.  
  122.     // {{{ getTableFieldDefinition()
  123.  
  124.     /**
  125.      * Get the structure of a field into an array
  126.      *
  127.      * @param string    $table       name of table that should be used in method
  128.      * @param string    $field_name  name of field that should be used in method
  129.      * @return mixed data array on success, a MDB2 error on failure
  130.      * @access public
  131.      */
  132.     function getTableFieldDefinition($table$field_name)
  133.     {
  134.         $db =$this->getDBInstance();
  135.         if (PEAR::isError($db)) {
  136.             return $db;
  137.         }
  138.  
  139.         $result $db->loadModule('Datatype'nulltrue);
  140.         if (PEAR::isError($result)) {
  141.             return $result;
  142.         }
  143.         $table $db->quote(strtoupper($table)'text');
  144.         $field_name $db->quote(strtoupper($field_name)'text');
  145.         $query = "SELECT RDB\$RELATION_FIELDS.RDB\$FIELD_NAME AS name,
  146.                          RDB\$FIELDS.RDB\$FIELD_LENGTH AS \"length\",
  147.                          RDB\$FIELDS.RDB\$FIELD_PRECISION AS \"precision\",
  148.                          (RDB\$FIELDS.RDB\$FIELD_SCALE * -1) AS \"scale\",
  149.                          RDB\$FIELDS.RDB\$FIELD_TYPE AS field_type_code,
  150.                          RDB\$FIELDS.RDB\$FIELD_SUB_TYPE AS field_sub_type_code,
  151.                          RDB\$RELATION_FIELDS.RDB\$DESCRIPTION AS description,
  152.                          RDB\$RELATION_FIELDS.RDB\$NULL_FLAG AS null_flag,
  153.                          RDB\$FIELDS.RDB\$DEFAULT_SOURCE AS default_source
  154.                     FROM RDB\$FIELDS
  155.                LEFT JOIN RDB\$RELATION_FIELDS ON RDB\$FIELDS.RDB\$FIELD_NAME = RDB\$RELATION_FIELDS.RDB\$FIELD_SOURCE
  156.                    WHERE UPPER(RDB\$RELATION_FIELDS.RDB\$RELATION_NAME)=$table
  157.                      AND UPPER(RDB\$RELATION_FIELDS.RDB\$FIELD_NAME)=$field_name;";
  158.         $column $db->queryRow($querynullMDB2_FETCHMODE_ASSOC);
  159.         if (PEAR::isError($column)) {
  160.             return $column;
  161.         }
  162.         if (empty($column)) {
  163.             return $db->raiseError(MDB2_ERROR_NOT_FOUNDnullnull,
  164.                 'it was not specified an existing table column'__FUNCTION__);
  165.         }
  166.         $column array_change_key_case($columnCASE_LOWER);
  167.         if ($db->options['portability'MDB2_PORTABILITY_FIX_CASE{
  168.             if ($db->options['field_case'== CASE_LOWER{
  169.                 $column['name'strtolower($column['name']);
  170.             else {
  171.                 $column['name'strtoupper($column['name']);
  172.             }
  173.         }
  174.  
  175.         $column['type'array_key_exists((int)$column['field_type_code']$this->types)
  176.             ? $this->types[(int)$column['field_type_code']] 'undefined';
  177.         if ($column['field_sub_type_code']
  178.             && array_key_exists((int)$column['field_type_code']$this->subtypes)
  179.             && array_key_exists($column['field_sub_type_code']$this->subtypes[(int)$column['field_type_code']])
  180.         {
  181.             $column['field_sub_type'$this->subtypes[(int)$column['field_type_code']][$column['field_sub_type_code']];
  182.         else {
  183.             $column['field_sub_type'= null;
  184.         }
  185.         $mapped_datatype $db->datatype->mapNativeDatatype($column);
  186.         if (PEAR::IsError($mapped_datatype)) {
  187.             return $mapped_datatype;
  188.         }
  189.         list($types$length$unsigned$fixed$mapped_datatype;
  190.         $notnull !empty($column['null_flag']);
  191.         $default $column['default_source'];
  192.         if (is_null($default&& $notnull{
  193.             $default ($types[0== 'integer'? 0 : '';
  194.         }
  195.  
  196.         $definition[0= array('notnull' => $notnull'nativetype' => $column['type']);
  197.         if (!is_null($length)) {
  198.             $definition[0]['length'$length;
  199.         }
  200.         if (!is_null($unsigned)) {
  201.             $definition[0]['unsigned'$unsigned;
  202.         }
  203.         if (!is_null($fixed)) {
  204.             $definition[0]['fixed'$fixed;
  205.         }
  206.         if ($default !== false{
  207.             $definition[0]['default'$default;
  208.         }
  209.         foreach ($types as $key => $type{
  210.             $definition[$key$definition[0];
  211.             if ($type == 'clob' || $type == 'blob'{
  212.                 unset($definition[$key]['default']);
  213.             }
  214.             $definition[$key]['type'$type;
  215.             $definition[$key]['mdb2type'$type;
  216.         }
  217.         return $definition;
  218.     }
  219.  
  220.     // }}}
  221.     // {{{ getTableIndexDefinition()
  222.  
  223.     /**
  224.      * Get the structure of an index into an array
  225.      *
  226.      * @param string    $table      name of table that should be used in method
  227.      * @param string    $index_name name of index that should be used in method
  228.      * @return mixed data array on success, a MDB2 error on failure
  229.      * @access public
  230.      */
  231.     function getTableIndexDefinition($table$index_name$format_index_name = true)
  232.     {
  233.         $db =$this->getDBInstance();
  234.         if (PEAR::isError($db)) {
  235.             return $db;
  236.         }
  237.         $table $db->quote(strtoupper($table)'text');
  238.         $query = "SELECT RDB\$INDEX_SEGMENTS.RDB\$FIELD_NAME AS field_name,
  239.                          RDB\$INDICES.RDB\$DESCRIPTION AS description,
  240.                          (RDB\$INDEX_SEGMENTS.RDB\$FIELD_POSITION + 1) AS field_position
  241.                     FROM RDB\$INDEX_SEGMENTS
  242.                LEFT JOIN RDB\$INDICES ON RDB\$INDICES.RDB\$INDEX_NAME = RDB\$INDEX_SEGMENTS.RDB\$INDEX_NAME
  243.                LEFT JOIN RDB\$RELATION_CONSTRAINTS ON RDB\$RELATION_CONSTRAINTS.RDB\$INDEX_NAME = RDB\$INDEX_SEGMENTS.RDB\$INDEX_NAME
  244.                    WHERE UPPER(RDB\$INDICES.RDB\$RELATION_NAME)=$table
  245.                      AND UPPER(RDB\$INDICES.RDB\$INDEX_NAME)=%s
  246.                      AND RDB\$RELATION_CONSTRAINTS.RDB\$CONSTRAINT_TYPE IS NULL
  247.                 ORDER BY RDB\$INDEX_SEGMENTS.RDB\$FIELD_POSITION";
  248.         $index_name_mdb2 $db->quote(strtoupper($db->getIndexName($index_name))'text');
  249.         $result $db->queryRow(sprintf($query$index_name_mdb2));
  250.         if (!PEAR::isError($result&& !is_null($result)) {
  251.             // apply 'idxname_format' only if the query succeeded, otherwise
  252.             // fallback to the given $index_name, without transformation
  253.             $index_name $index_name_mdb2;
  254.         else {
  255.             $index_name $db->quote(strtoupper($index_name)'text');
  256.         }
  257.         $result $db->query(sprintf($query$index_name));
  258.         if (PEAR::isError($result)) {
  259.             return $result;
  260.         }
  261.         
  262.         $definition = array();
  263.         while (is_array($row $result->fetchRow(MDB2_FETCHMODE_ASSOC))) {
  264.             $row array_change_key_case($rowCASE_LOWER);
  265.             $column_name $row['field_name'];
  266.             if ($db->options['portability'MDB2_PORTABILITY_FIX_CASE{
  267.                 if ($db->options['field_case'== CASE_LOWER{
  268.                     $column_name strtolower($column_name);
  269.                 else {
  270.                     $column_name strtoupper($column_name);
  271.                 }
  272.             }
  273.             $definition['fields'][$column_name= array(
  274.                 'position' => (int)$row['field_position'],
  275.             );
  276.             /*
  277.             if (!empty($row['collation'])) {
  278.                 $definition['fields'][$column_name]['sorting'] = ($row['collation'] == 'A'
  279.                     ? 'ascending' : 'descending');
  280.             }
  281.             */
  282.         }
  283.  
  284.         $result->free();
  285.         if (empty($definition)) {
  286.             return $db->raiseError(MDB2_ERROR_NOT_FOUNDnullnull,
  287.                 'it was not specified an existing table index'__FUNCTION__);
  288.         }
  289.         return $definition;
  290.     }
  291.  
  292.     // }}}
  293.     // {{{ getTableConstraintDefinition()
  294.  
  295.     /**
  296.      * Get the structure of a constraint into an array
  297.      *
  298.      * @param string    $table      name of table that should be used in method
  299.      * @param string    $constraint_name name of constraint that should be used in method
  300.      * @return mixed data array on success, a MDB2 error on failure
  301.      * @access public
  302.      */
  303.     function getTableConstraintDefinition($table$constraint_name)
  304.     {
  305.         $db =$this->getDBInstance();
  306.         if (PEAR::isError($db)) {
  307.             return $db;
  308.         }
  309.         
  310.         $table $db->quote(strtoupper($table)'text');
  311.         $query = "SELECT RDB\$INDEX_SEGMENTS.RDB\$FIELD_NAME AS field_name,
  312.                          RDB\$INDICES.RDB\$UNIQUE_FLAG AS unique_flag,
  313.                          RDB\$INDICES.RDB\$FOREIGN_KEY AS foreign_key,
  314.                          RDB\$INDICES.RDB\$DESCRIPTION AS description,
  315.                          RDB\$RELATION_CONSTRAINTS.RDB\$CONSTRAINT_TYPE AS constraint_type,
  316.                          (RDB\$INDEX_SEGMENTS.RDB\$FIELD_POSITION + 1) AS field_position
  317.                     FROM RDB\$INDEX_SEGMENTS
  318.                LEFT JOIN RDB\$INDICES ON RDB\$INDICES.RDB\$INDEX_NAME = RDB\$INDEX_SEGMENTS.RDB\$INDEX_NAME
  319.                LEFT JOIN RDB\$RELATION_CONSTRAINTS ON RDB\$RELATION_CONSTRAINTS.RDB\$INDEX_NAME = RDB\$INDEX_SEGMENTS.RDB\$INDEX_NAME
  320.                    WHERE UPPER(RDB\$INDICES.RDB\$RELATION_NAME)=$table
  321.                      AND UPPER(RDB\$INDICES.RDB\$INDEX_NAME)=%s
  322.                 ORDER BY RDB\$INDEX_SEGMENTS.RDB\$FIELD_POSITION;";
  323.         $constraint_name_mdb2 $db->quote(strtoupper($db->getIndexName($constraint_name))'text');
  324.         $result $db->queryRow(sprintf($query$constraint_name_mdb2));
  325.         if (!PEAR::isError($result&& !is_null($result)) {
  326.             // apply 'idxname_format' only if the query succeeded, otherwise
  327.             // fallback to the given $index_name, without transformation
  328.             $constraint_name $constraint_name_mdb2;
  329.         else {
  330.             $constraint_name $db->quote(strtoupper($constraint_name)'text');
  331.         }
  332.         $result $db->query(sprintf($query$constraint_name));
  333.         if (PEAR::isError($result)) {
  334.             return $result;
  335.         }
  336.         
  337.         $definition = array();
  338.         while (is_array($row $result->fetchRow(MDB2_FETCHMODE_ASSOC))) {
  339.             $row array_change_key_case($rowCASE_LOWER);
  340.             $column_name $row['field_name'];
  341.             if ($db->options['portability'MDB2_PORTABILITY_FIX_CASE{
  342.                 if ($db->options['field_case'== CASE_LOWER{
  343.                     $column_name strtolower($column_name);
  344.                 else {
  345.                     $column_name strtoupper($column_name);
  346.                 }
  347.             }
  348.             $definition['fields'][$column_name= array(
  349.                 'position' => (int)$row['field_position']
  350.             );
  351.             //collation?!?
  352.             /*
  353.             if (!empty($row['collation'])) {
  354.                 $definition['fields'][$field]['sorting'] = ($row['collation'] == 'A'
  355.                     ? 'ascending' : 'descending');
  356.             }
  357.             */
  358.             $lastrow $row;
  359.             // otherwise $row is no longer usable on exit from loop
  360.         }
  361.         $result->free();
  362.         if (empty($definition)) {
  363.             return $db->raiseError(MDB2_ERROR_NOT_FOUNDnullnull,
  364.                 $constraint_name ' is not an existing table constraint'__FUNCTION__);
  365.         }
  366.         if (!$lastrow['unique_flag'&& !$lastrow['foreign_key']{
  367.             return $db->raiseError(MDB2_ERROR_NOT_FOUNDnullnull,
  368.                 $constraint_name ' is not an existing table constraint'__FUNCTION__);
  369.         }
  370.  
  371.         if ($lastrow['constraint_type'=== 'PRIMARY KEY'{
  372.             $definition['primary'= true;
  373.         elseif ($lastrow['unique_flag']{
  374.             $definition['unique'= true;
  375.         elseif ($lastrow['foreign_key']{
  376.             $definition['foreign'= true;
  377.         }
  378.         return $definition;
  379.     }
  380.  
  381.     // }}}
  382.     // {{{ getTriggerDefinition()
  383.  
  384.     /**
  385.      * Get the structure of a trigger into an array
  386.      *
  387.      * EXPERIMENTAL
  388.      *
  389.      * WARNING: this function is experimental and may change the returned value
  390.      * at any time until labelled as non-experimental
  391.      *
  392.      * @param string    $trigger    name of trigger that should be used in method
  393.      * @return mixed data array on success, a MDB2 error on failure
  394.      * @access public
  395.      */
  396.     function getTriggerDefinition($trigger)
  397.     {
  398.         $db =$this->getDBInstance();
  399.         if (PEAR::isError($db)) {
  400.             return $db;
  401.         }
  402.  
  403.         $trigger $db->quote(strtoupper($trigger)'text');
  404.         $query = "SELECT RDB\$TRIGGER_NAME AS trigger_name,
  405.                          RDB\$RELATION_NAME AS table_name,
  406.                          RDB\$TRIGGER_SOURCE AS trigger_body,
  407.                          CASE RDB\$TRIGGER_TYPE
  408.                             WHEN 1 THEN 'BEFORE'
  409.                             WHEN 2 THEN 'AFTER'
  410.                             WHEN 3 THEN 'BEFORE'
  411.                             WHEN 4 THEN 'AFTER'
  412.                             WHEN 5 THEN 'BEFORE'
  413.                             WHEN 6 THEN 'AFTER'
  414.                          END AS trigger_type,
  415.                          CASE RDB\$TRIGGER_TYPE
  416.                             WHEN 1 THEN 'INSERT'
  417.                             WHEN 2 THEN 'INSERT'
  418.                             WHEN 3 THEN 'UPDATE'
  419.                             WHEN 4 THEN 'UPDATE'
  420.                             WHEN 5 THEN 'DELETE'
  421.                             WHEN 6 THEN 'DELETE'
  422.                          END AS trigger_event,
  423.                          CASE RDB\$TRIGGER_INACTIVE
  424.                             WHEN 1 THEN 0 ELSE 1
  425.                          END AS trigger_enabled,
  426.                          RDB\$DESCRIPTION AS trigger_comment
  427.                     FROM RDB\$TRIGGERS
  428.                    WHERE UPPER(RDB\$TRIGGER_NAME)=$trigger";
  429.         $types = array(
  430.             'trigger_name'    => 'text',
  431.             'table_name'      => 'text',
  432.             'trigger_body'    => 'clob',
  433.             'trigger_type'    => 'text',
  434.             'trigger_event'   => 'text',
  435.             'trigger_comment' => 'text',
  436.             'trigger_enabled' => 'boolean',
  437.         );
  438.  
  439.         $def $db->queryRow($query$typesMDB2_FETCHMODE_ASSOC);
  440.         if (PEAR::isError($def)) {
  441.             return $def;
  442.         }
  443.  
  444.         $clob $def['trigger_body'];
  445.         if (!PEAR::isError($clob&& is_resource($clob)) {
  446.             $value '';
  447.             while (!feof($clob)) {
  448.                 $data fread($clob8192);
  449.                 $value.= $data;
  450.             }
  451.             $db->datatype->destroyLOB($clob);
  452.             $def['trigger_body'$value;
  453.         }
  454.  
  455.         return $def;
  456.     }
  457.  
  458.     // }}}
  459.     // {{{ tableInfo()
  460.  
  461.     /**
  462.      * Returns information about a table or a result set
  463.      *
  464.      * NOTE: only supports 'table' and 'flags' if <var>$result</var>
  465.      * is a table name.
  466.      *
  467.      * @param object|string $result  MDB2_result object from a query or a
  468.      *                                  string containing the name of a table.
  469.      *                                  While this also accepts a query result
  470.      *                                  resource identifier, this behavior is
  471.      *                                  deprecated.
  472.      * @param int            $mode    a valid tableInfo mode
  473.      *
  474.      * @return array  an associative array with the information requested.
  475.      *                  A MDB2_Error object on failure.
  476.      *
  477.      * @see MDB2_Driver_Common::tableInfo()
  478.      */
  479.     function tableInfo($result$mode = null)
  480.     {
  481.         if (is_string($result)) {
  482.            return parent::tableInfo($result$mode);
  483.         }
  484.  
  485.         $db =$this->getDBInstance();
  486.         if (PEAR::isError($db)) {
  487.             return $db;
  488.         }
  489.  
  490.         $resource = MDB2::isResultCommon($result$result->getResource($result;
  491.         if (!is_resource($resource)) {
  492.             return $db->raiseError(MDB2_ERROR_NEED_MORE_DATAnullnull,
  493.                 'Could not generate result resource'__FUNCTION__);
  494.         }
  495.  
  496.         if ($db->options['portability'MDB2_PORTABILITY_FIX_CASE{
  497.             if ($db->options['field_case'== CASE_LOWER{
  498.                 $case_func 'strtolower';
  499.             else {
  500.                 $case_func 'strtoupper';
  501.             }
  502.         else {
  503.             $case_func 'strval';
  504.         }
  505.  
  506.         $count @ibase_num_fields($resource);
  507.         $res   = array();
  508.  
  509.         if ($mode{
  510.             $res['num_fields'$count;
  511.         }
  512.  
  513.         $db->loadModule('Datatype'nulltrue);
  514.         for ($i = 0; $i $count$i++{
  515.             $info @ibase_field_info($resource$i);
  516.             if (($pos strpos($info['type']'(')) !== false{
  517.                 $info['type'substr($info['type']0$pos);
  518.             }
  519.             $res[$i= array(
  520.                 'table'  => $case_func($info['relation']),
  521.                 'name'   => $case_func($info['name']),
  522.                 'type'   => $info['type'],
  523.                 'length' => $info['length'],
  524.                 'flags'  => '',
  525.             );
  526.             $mdb2type_info $db->datatype->mapNativeDatatype($res[$i]);
  527.             if (PEAR::isError($mdb2type_info)) {
  528.                return $mdb2type_info;
  529.             }
  530.             $res[$i]['mdb2type'$mdb2type_info[0][0];
  531.             if ($mode MDB2_TABLEINFO_ORDER{
  532.                 $res['order'][$res[$i]['name']] $i;
  533.             }
  534.             if ($mode MDB2_TABLEINFO_ORDERTABLE{
  535.                 $res['ordertable'][$res[$i]['table']][$res[$i]['name']] $i;
  536.             }
  537.         }
  538.  
  539.         return $res;
  540.     }
  541. }
  542. ?>

Documentation generated on Mon, 11 Mar 2019 15:01:23 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.