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, 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.102 2007/03/12 14:31:11 quipo Exp $
  46.  
  47. require_once 'MDB2/Driver/Manager/Common.php';
  48.  
  49. /**
  50.  * MDB2 FireBird/InterBase driver for the management modules
  51.  *
  52.  * @package MDB2
  53.  * @category Database
  54.  * @author Lorenzo Alberton <l.alberton@quipo.it>
  55.  */
  56. class MDB2_Driver_Manager_ibase extends MDB2_Driver_Manager_Common
  57. {
  58.     // {{{ createDatabase()
  59.  
  60.     /**
  61.      * create a new database
  62.      *
  63.      * @param string $name  name of the database that should be created
  64.      * @return mixed        MDB2_OK on success, a MDB2 error on failure
  65.      * @access public
  66.      */
  67.     function createDatabase($name)
  68.     {
  69.         $db =$this->getDBInstance();
  70.         if (PEAR::isError($db)) {
  71.             return $db;
  72.         }
  73.  
  74.         return $db->raiseError(MDB2_ERROR_UNSUPPORTEDnullnull'Create database',
  75.                 'PHP Interbase API does not support direct queries. You have to '.
  76.                 'create the db manually by using isql command or a similar program'__FUNCTION__);
  77.     }
  78.  
  79.     // }}}
  80.     // {{{ dropDatabase()
  81.  
  82.     /**
  83.      * drop an existing database
  84.      *
  85.      * @param string $name  name of the database that should be dropped
  86.      * @return mixed        MDB2_OK on success, a MDB2 error on failure
  87.      * @access public
  88.      */
  89.     function dropDatabase($name)
  90.     {
  91.         $db =$this->getDBInstance();
  92.         if (PEAR::isError($db)) {
  93.             return $db;
  94.         }
  95.  
  96.         return $db->raiseError(MDB2_ERROR_UNSUPPORTEDnullnull'Drop database',
  97.                 'PHP Interbase API does not support direct queries. You have '.
  98.                 'to drop the db manually by using isql command or a similar program'__FUNCTION__);
  99.     }
  100.  
  101.     // }}}
  102.     // {{{ _silentCommit()
  103.  
  104.     /**
  105.      * conditional COMMIT query to make changes permanent, when auto
  106.      * @access private
  107.      */
  108.     function _silentCommit()
  109.     {
  110.         $db =$this->getDBInstance();
  111.         if (PEAR::isError($db)) {
  112.             return $db;
  113.         }
  114.         if (!$db->in_transaction{
  115.             @$db->exec('COMMIT');
  116.         }
  117.     }
  118.  
  119.     // }}}
  120.     // {{{ _makeAutoincrement()
  121.  
  122.     /**
  123.      * add an autoincrement sequence + trigger
  124.      *
  125.      * @param string $name  name of the PK field
  126.      * @param string $table name of the table
  127.      * @param string $start start value for the sequence
  128.      * @return mixed        MDB2_OK on success, a MDB2 error on failure
  129.      * @access private
  130.      */
  131.     function _makeAutoincrement($name$table$start = null)
  132.     {
  133.         $db =$this->getDBInstance();
  134.         if (PEAR::isError($db)) {
  135.             return $db;
  136.         }
  137.  
  138.         if (is_null($start)) {
  139.             $db->beginTransaction();
  140.             $query 'SELECT MAX(' $db->quoteIdentifier($nametrue') FROM ' $db->quoteIdentifier($tabletrue);
  141.             $start $this->db->queryOne($query'integer');
  142.             if (PEAR::isError($start)) {
  143.                 return $start;
  144.             }
  145.             ++$start;
  146.             $result $db->manager->createSequence($table$start);
  147.             $db->commit();
  148.         else {
  149.             $result $db->manager->createSequence($table$start);
  150.         }
  151.         if (PEAR::isError($result)) {
  152.             return $db->raiseError(nullnullnull,
  153.                 'sequence for autoincrement PK could not be created'__FUNCTION__);
  154.         }
  155.  
  156.         $sequence_name $db->getSequenceName($table);
  157.         $trigger_name  $db->quoteIdentifier($table '_AUTOINCREMENT_PK'true);
  158.         $table $db->quoteIdentifier($tabletrue);
  159.         $name  $db->quoteIdentifier($nametrue);
  160.         $trigger_sql 'CREATE TRIGGER ' $trigger_name ' FOR ' $table '
  161.                         ACTIVE BEFORE INSERT POSITION 0
  162.                         AS
  163.                         BEGIN
  164.                         IF (NEW.' $name ' IS NULL OR NEW.' $name ' = 0) THEN
  165.                             NEW.' $name ' = GEN_ID('.$sequence_name.', 1);
  166.                         END';
  167.         $result $db->exec($trigger_sql);
  168.         $this->_silentCommit();
  169.         return $result;
  170.     }
  171.  
  172.     // }}}
  173.     // {{{ _dropAutoincrement()
  174.  
  175.     /**
  176.      * drop an existing autoincrement sequence + trigger
  177.      *
  178.      * @param string $table name of the table
  179.      * @return mixed        MDB2_OK on success, a MDB2 error on failure
  180.      * @access private
  181.      */
  182.     function _dropAutoincrement($table)
  183.     {
  184.         $db =$this->getDBInstance();
  185.         if (PEAR::isError($db)) {
  186.             return $db;
  187.         }
  188.         $result $db->manager->dropSequence($table);
  189.         if (PEAR::isError($result)) {
  190.             return $db->raiseError(nullnullnull,
  191.                 'sequence for autoincrement PK could not be dropped'__FUNCTION__);
  192.         }
  193.         //remove autoincrement trigger associated with the table
  194.         $table $db->quote(strtoupper($table)'text');
  195.         $trigger_name $db->quote(strtoupper($table'_AUTOINCREMENT_PK''text');
  196.         $result $db->exec("DELETE FROM RDB\$TRIGGERS WHERE UPPER(RDB\$RELATION_NAME)=$table AND UPPER(RDB\$TRIGGER_NAME)=$trigger_name");
  197.         if (PEAR::isError($result)) {
  198.             return $db->raiseError(nullnullnull,
  199.                 'trigger for autoincrement PK could not be dropped'__FUNCTION__);
  200.         }
  201.         return MDB2_OK;
  202.     }
  203.  
  204.     // }}}
  205.     // {{{ createTable()
  206.  
  207.     /**
  208.      * create a new table
  209.      *
  210.      * @param string $name     Name of the database that should be created
  211.      * @param array $fields Associative array that contains the definition of each field of the new table
  212.      *                         The indexes of the array entries are the names of the fields of the table an
  213.      *                         the array entry values are associative arrays like those that are meant to be
  214.      *                          passed with the field definitions to get[Type]Declaration() functions.
  215.      *
  216.      *                         Example
  217.      *                         array(
  218.      *
  219.      *                             'id' => array(
  220.      *                                 'type' => 'integer',
  221.      *                                 'unsigned' => 1,
  222.      *                                 'notnull' => 1,
  223.      *                                 'default' => 0,
  224.      *                             ),
  225.      *                             'name' => array(
  226.      *                                 'type' => 'text',
  227.      *                                 'length' => 12,
  228.      *                             ),
  229.      *                             'description' => array(
  230.      *                                 'type' => 'text',
  231.      *                                 'length' => 12,
  232.      *                             )
  233.      *                         );
  234.      * @param array $options  An associative array of table options:
  235.      *                           array(
  236.      *                               'comment' => 'Foo',
  237.      *                               'temporary' => true|false,
  238.      *                           );
  239.      * @return mixed MDB2_OK on success, a MDB2 error on failure
  240.      * @access public
  241.      */
  242.     function createTable($name$fields$options = array())
  243.     {
  244.         $db =$this->getDBInstance();
  245.         if (PEAR::isError($db)) {
  246.             return $db;
  247.         }
  248.         $query $this->_getCreateTableQuery($name$fields$options);
  249.         if (PEAR::isError($query)) {
  250.             return $query;
  251.         }
  252.  
  253.         $options_strings = array();
  254.  
  255.         if (!empty($options['comment'])) {
  256.             $options_strings['comment''/* '.$db->quote($options['comment']'text')' */';
  257.         }
  258.  
  259.         if (!empty($options_strings)) {
  260.             $query.= ' '.implode(' '$options_strings);
  261.         }
  262.         
  263.         $result $db->exec($query);
  264.         if (PEAR::isError($result)) {
  265.             return $result;
  266.         }
  267.         $this->_silentCommit();
  268.         foreach ($fields as $field_name => $field{
  269.             if (!empty($field['autoincrement'])) {
  270.                 //create PK constraint
  271.                 $pk_definition = array(
  272.                     'fields' => array($field_name => array()),
  273.                     'primary' => true,
  274.                 );
  275.                 //$pk_name = $name.'_PK';
  276.                 $pk_name = null;
  277.                 $result $this->createConstraint($name$pk_name$pk_definition);
  278.                 if (PEAR::isError($result)) {
  279.                     return $result;
  280.                 }
  281.                 //create autoincrement sequence + trigger
  282.                 return $this->_makeAutoincrement($field_name$name1);
  283.             }
  284.         }
  285.     }
  286.  
  287.     // }}}
  288.     // {{{ checkSupportedChanges()
  289.  
  290.     /**
  291.      * Check if planned changes are supported
  292.      *
  293.      * @param string $name name of the database that should be dropped
  294.      * @return mixed MDB2_OK on success, a MDB2 error on failure
  295.      * @access public
  296.      */
  297.     function checkSupportedChanges(&$changes)
  298.     {
  299.         $db =$this->getDBInstance();
  300.         if (PEAR::isError($db)) {
  301.             return $db;
  302.         }
  303.  
  304.         foreach ($changes as $change_name => $change{
  305.             switch ($change_name{
  306.             case 'notnull':
  307.                 return $db->raiseError(MDB2_ERROR_UNSUPPORTEDnullnull,
  308.                     'it is not supported changes to field not null constraint'__FUNCTION__);
  309.             case 'default':
  310.                 return $db->raiseError(MDB2_ERROR_UNSUPPORTEDnullnull,
  311.                     'it is not supported changes to field default value'__FUNCTION__);
  312.             case 'length':
  313.                 /*
  314.                 return $db->raiseError(MDB2_ERROR_UNSUPPORTED, null, null,
  315.                     'it is not supported changes to field default length', __FUNCTION__);
  316.                 */
  317.             case 'unsigned':
  318.             case 'type':
  319.             case 'declaration':
  320.             case 'definition':
  321.                 break;
  322.             default:
  323.                 return $db->raiseError(MDB2_ERROR_UNSUPPORTEDnullnull,
  324.                     'it is not supported change of type' $change_name__FUNCTION__);
  325.             }
  326.         }
  327.         return MDB2_OK;
  328.     }
  329.  
  330.     // }}}
  331.     // {{{ _getTemporaryTableQuery()
  332.  
  333.     /**
  334.      * A method to return the required SQL string that fits between CREATE ... TABLE
  335.      * to create the table as a temporary table.
  336.      *
  337.      * @return string The string required to be placed between "CREATE" and "TABLE"
  338.      *                 to generate a temporary table, if possible.
  339.      */
  340.     function _getTemporaryTableQuery()
  341.     {
  342.         return 'GLOBAL TEMPORARY';
  343.     }
  344.  
  345.     // }}}
  346.     // {{{ dropTable()
  347.  
  348.     /**
  349.      * drop an existing table
  350.      *
  351.      * @param string $name name of the table that should be dropped
  352.      * @return mixed MDB2_OK on success, a MDB2 error on failure
  353.      * @access public
  354.      */
  355.     function dropTable($name)
  356.     {
  357.         $result $this->_dropAutoincrement($name);
  358.         if (PEAR::isError($result)) {
  359.             return $result;
  360.         }
  361.         $result = parent::dropTable($name);
  362.         $this->_silentCommit();
  363.         return $result;
  364.     }
  365.  
  366.     // }}}
  367.     // {{{ alterTable()
  368.  
  369.     /**
  370.      * alter an existing table
  371.      *
  372.      * @param string $name         name of the table that is intended to be changed.
  373.      * @param array $changes     associative array that contains the details of each type
  374.      *                              of change that is intended to be performed. The types of
  375.      *                              changes that are currently supported are defined as follows:
  376.      *
  377.      *                              name
  378.      *
  379.      *                                 New name for the table.
  380.      *
  381.      *                             add
  382.      *
  383.      *                                 Associative array with the names of fields to be added as
  384.      *                                  indexes of the array. The value of each entry of the array
  385.      *                                  should be set to another associative array with the properties
  386.      *                                  of the fields to be added. The properties of the fields should
  387.      *                                  be the same as defined by the MDB2 parser.
  388.      *
  389.      *
  390.      *                             remove
  391.      *
  392.      *                                 Associative array with the names of fields to be removed as indexes
  393.      *                                  of the array. Currently the values assigned to each entry are ignored.
  394.      *                                  An empty array should be used for future compatibility.
  395.      *
  396.      *                             rename
  397.      *
  398.      *                                 Associative array with the names of fields to be renamed as indexes
  399.      *                                  of the array. The value of each entry of the array should be set to
  400.      *                                  another associative array with the entry named name with the new
  401.      *                                  field name and the entry named Declaration that is expected to contain
  402.      *                                  the portion of the field declaration already in DBMS specific SQL code
  403.      *                                  as it is used in the CREATE TABLE statement.
  404.      *
  405.      *                             change
  406.      *
  407.      *                                 Associative array with the names of the fields to be changed as indexes
  408.      *                                  of the array. Keep in mind that if it is intended to change either the
  409.      *                                  name of a field and any other properties, the change array entries
  410.      *                                  should have the new names of the fields as array indexes.
  411.      *
  412.      *                                 The value of each entry of the array should be set to another associative
  413.      *                                  array with the properties of the fields to that are meant to be changed as
  414.      *                                  array entries. These entries should be assigned to the new values of the
  415.      *                                  respective properties. The properties of the fields should be the same
  416.      *                                  as defined by the MDB2 parser.
  417.      *
  418.      *                             Example
  419.      *                                 array(
  420.      *                                     'name' => 'userlist',
  421.      *                                     'add' => array(
  422.      *                                         'quota' => array(
  423.      *                                             'type' => 'integer',
  424.      *                                             'unsigned' => 1
  425.      *                                         )
  426.      *                                     ),
  427.      *                                     'remove' => array(
  428.      *                                         'file_limit' => array(),
  429.      *                                         'time_limit' => array()
  430.      *                                     ),
  431.      *                                     'change' => array(
  432.      *                                         'name' => array(
  433.      *                                             'length' => '20',
  434.      *                                             'definition' => array(
  435.      *                                                 'type' => 'text',
  436.      *                                                 'length' => 20,
  437.      *                                             ),
  438.      *                                         )
  439.      *                                     ),
  440.      *                                     'rename' => array(
  441.      *                                         'sex' => array(
  442.      *                                             'name' => 'gender',
  443.      *                                             'definition' => array(
  444.      *                                                 'type' => 'text',
  445.      *                                                 'length' => 1,
  446.      *                                                 'default' => 'M',
  447.      *                                             ),
  448.      *                                         )
  449.      *                                     )
  450.      *                                 )
  451.      *
  452.      * @param boolean $check     indicates whether the function should just check if the DBMS driver
  453.      *                              can perform the requested table alterations if the value is true or
  454.      *                              actually perform them otherwise.
  455.      * @access public
  456.      *
  457.       * @return mixed MDB2_OK on success, a MDB2 error on failure
  458.      */
  459.     function alterTable($name$changes$check)
  460.     {
  461.         $db =$this->getDBInstance();
  462.         if (PEAR::isError($db)) {
  463.             return $db;
  464.         }
  465.  
  466.         foreach ($changes as $change_name => $change{
  467.             switch ($change_name{
  468.             case 'add':
  469.             case 'remove':
  470.             case 'rename':
  471.                 break;
  472.             case 'change':
  473.                 foreach ($changes['change'as $field{
  474.                     if (PEAR::isError($err $this->checkSupportedChanges($field))) {
  475.                         return $err;
  476.                     }
  477.                 }
  478.                 break;
  479.             default:
  480.                 return $db->raiseError(MDB2_ERROR_CANNOT_ALTERnullnull,
  481.                     'change type ' $change_name ' not yet supported'__FUNCTION__);
  482.             }
  483.         }
  484.         if ($check{
  485.             return MDB2_OK;
  486.         }
  487.         $query '';
  488.         if (!empty($changes['add']&& is_array($changes['add'])) {
  489.             foreach ($changes['add'as $field_name => $field{
  490.                 if ($query{
  491.                     $query.= ', ';
  492.                 }
  493.                 $query.= 'ADD ' $db->getDeclaration($field['type']$field_name$field);
  494.             }
  495.         }
  496.  
  497.         if (!empty($changes['remove']&& is_array($changes['remove'])) {
  498.             foreach ($changes['remove'as $field_name => $field{
  499.                 if ($query{
  500.                     $query.= ', ';
  501.                 }
  502.                 $field_name $db->quoteIdentifier($field_nametrue);
  503.                 $query.= 'DROP ' $field_name;
  504.             }
  505.         }
  506.  
  507.         if (!empty($changes['rename']&& is_array($changes['rename'])) {
  508.             foreach ($changes['rename'as $field_name => $field{
  509.                 if ($query{
  510.                     $query.= ', ';
  511.                 }
  512.                 $field_name $db->quoteIdentifier($field_nametrue);
  513.                 $query.= 'ALTER ' $field_name ' TO ' $db->quoteIdentifier($field['name']true);
  514.             }
  515.         }
  516.  
  517.         if (!empty($changes['change']&& is_array($changes['change'])) {
  518.             // missing support to change DEFAULT and NULLability
  519.             foreach ($changes['change'as $field_name => $field{
  520.                 if (PEAR::isError($err $this->checkSupportedChanges($field))) {
  521.                     return $err;
  522.                 }
  523.                 if ($query{
  524.                     $query.= ', ';
  525.                 }
  526.                 $db->loadModule('Datatype'nulltrue);
  527.                 $field_name $db->quoteIdentifier($field_nametrue);
  528.                 $query.= 'ALTER ' $field_name.' TYPE ' $db->datatype->getTypeDeclaration($field['definition']);
  529.             }
  530.         }
  531.  
  532.         if (!strlen($query)) {
  533.             return MDB2_OK;
  534.         }
  535.  
  536.         $name $db->quoteIdentifier($nametrue);
  537.         $result $db->exec("ALTER TABLE $name $query");
  538.         $this->_silentCommit();
  539.         return $result;
  540.     }
  541.  
  542.     // }}}
  543.     // {{{ listTables()
  544.  
  545.     /**
  546.      * list all tables in the current database
  547.      *
  548.      * @return mixed array of table names on success, a MDB2 error on failure
  549.      * @access public
  550.      */
  551.     function listTables()
  552.     {
  553.         $db =$this->getDBInstance();
  554.         if (PEAR::isError($db)) {
  555.             return $db;
  556.         }
  557.         $query 'SELECT RDB$RELATION_NAME FROM RDB$RELATIONS WHERE RDB$SYSTEM_FLAG=0 AND RDB$VIEW_BLR IS NULL';
  558.         $result $db->queryCol($query);
  559.         if (PEAR::isError($result)) {
  560.             return $result;
  561.         }
  562.         if ($db->options['portability'MDB2_PORTABILITY_FIX_CASE{
  563.             $result array_map(($db->options['field_case'== CASE_LOWER ? 'strtolower' 'strtoupper')$result);
  564.         }
  565.         return $result;
  566.     }
  567.  
  568.     // }}}
  569.     // {{{ listTableFields()
  570.  
  571.     /**
  572.      * list all fields in a table in the current database
  573.      *
  574.      * @param string $table name of table that should be used in method
  575.      * @return mixed array of field names on success, a MDB2 error on failure
  576.      * @access public
  577.      */
  578.     function listTableFields($table)
  579.     {
  580.         $db =$this->getDBInstance();
  581.         if (PEAR::isError($db)) {
  582.             return $db;
  583.         }
  584.         $table $db->quote(strtoupper($table)'text');
  585.         $query = "SELECT RDB\$FIELD_NAME FROM RDB\$RELATION_FIELDS WHERE UPPER(RDB\$RELATION_NAME)=$table";
  586.         $result $db->queryCol($query);
  587.         if (PEAR::isError($result)) {
  588.             return $result;
  589.         }
  590.         if ($db->options['portability'MDB2_PORTABILITY_FIX_CASE{
  591.             $result array_map(($db->options['field_case'== CASE_LOWER ? 'strtolower' 'strtoupper')$result);
  592.         }
  593.         return $result;
  594.     }
  595.  
  596.     // }}}
  597.     // {{{ listUsers()
  598.  
  599.     /**
  600.      * list all users
  601.      *
  602.      * @return mixed array of user names on success, a MDB2 error on failure
  603.      * @access public
  604.      */
  605.     function listUsers()
  606.     {
  607.         $db =$this->getDBInstance();
  608.         if (PEAR::isError($db)) {
  609.             return $db;
  610.         }
  611.         return $db->queryCol('SELECT DISTINCT RDB$USER FROM RDB$USER_PRIVILEGES');
  612.     }
  613.  
  614.     // }}}
  615.     // {{{ listViews()
  616.  
  617.     /**
  618.      * list all views in the current database
  619.      *
  620.      * @return mixed array of view names on success, a MDB2 error on failure
  621.      * @access public
  622.      */
  623.     function listViews()
  624.     {
  625.         $db =$this->getDBInstance();
  626.         if (PEAR::isError($db)) {
  627.             return $db;
  628.         }
  629.  
  630.         $result $db->queryCol('SELECT DISTINCT RDB$VIEW_NAME FROM RDB$VIEW_RELATIONS');
  631.         if (PEAR::isError($result)) {
  632.             return $result;
  633.         }
  634.         if ($db->options['portability'MDB2_PORTABILITY_FIX_CASE{
  635.             $result array_map(($db->options['field_case'== CASE_LOWER ? 'strtolower' 'strtoupper')$result);
  636.         }
  637.         return $result;
  638.     }
  639.  
  640.     // }}}
  641.     // {{{ listTableViews()
  642.  
  643.     /**
  644.      * list the views in the database that reference a given table
  645.      *
  646.      * @param string table for which all referenced views should be found
  647.      * @return mixed array of view names on success, a MDB2 error on failure
  648.      * @access public
  649.      */
  650.     function listTableViews($table)
  651.     {
  652.         $db =$this->getDBInstance();
  653.         if (PEAR::isError($db)) {
  654.             return $db;
  655.         }
  656.  
  657.         $query 'SELECT DISTINCT RDB$VIEW_NAME FROM RDB$VIEW_RELATIONS';
  658.         $table $db->quote(strtoupper($table)'text');
  659.         $query .= " WHERE UPPER(RDB\$RELATION_NAME)=$table";
  660.         $result $db->queryCol($query);
  661.         if (PEAR::isError($result)) {
  662.             return $result;
  663.         }
  664.         if ($db->options['portability'MDB2_PORTABILITY_FIX_CASE{
  665.             $result array_map(($db->options['field_case'== CASE_LOWER ? 'strtolower' 'strtoupper')$result);
  666.         }
  667.         return $result;
  668.     }
  669.  
  670.     // }}}
  671.     // {{{ listFunctions()
  672.  
  673.     /**
  674.      * list all functions (and stored procedures) in the current database
  675.      *
  676.      * @return mixed array of function names on success, a MDB2 error on failure
  677.      * @access public
  678.      */
  679.     function listFunctions()
  680.     {
  681.         $db =$this->getDBInstance();
  682.         if (PEAR::isError($db)) {
  683.             return $db;
  684.         }
  685.  
  686.         $query 'SELECT RDB$FUNCTION_NAME FROM RDB$FUNCTIONS WHERE RDB$SYSTEM_FLAG IS NULL
  687.                   UNION
  688.                   SELECT RDB$PROCEDURE_NAME FROM RDB$PROCEDURES';
  689.         $result $db->queryCol($query);
  690.         if (PEAR::isError($result)) {
  691.             return $result;
  692.         }
  693.         if ($db->options['portability'MDB2_PORTABILITY_FIX_CASE{
  694.             $result array_map(($db->options['field_case'== CASE_LOWER ? 'strtolower' 'strtoupper')$result);
  695.         }
  696.         return $result;
  697.     }
  698.  
  699.     // }}}
  700.     // {{{ listTableTriggers()
  701.  
  702.     /**
  703.      * list all triggers in the database that reference a given table
  704.      *
  705.      * @param string table for which all referenced triggers should be found
  706.      * @return mixed array of trigger names on success, a MDB2 error on failure
  707.      * @access public
  708.      */
  709.     function listTableTriggers($table = null)
  710.     {
  711.         $db =$this->getDBInstance();
  712.         if (PEAR::isError($db)) {
  713.             return $db;
  714.         }
  715.  
  716.         $query 'SELECT RDB$TRIGGER_NAME
  717.                     FROM RDB$TRIGGERS
  718.                    WHERE RDB$SYSTEM_FLAG IS NULL
  719.                       OR RDB$SYSTEM_FLAG = 0';
  720.         if (!is_null($table)) {
  721.             $table $db->quote(strtoupper($table)'text');
  722.             $query .= " AND UPPER(RDB\$RELATION_NAME)=$table";
  723.         }
  724.         $result $db->queryCol($query);
  725.         if (PEAR::isError($result)) {
  726.             return $result;
  727.         }
  728.         if ($db->options['portability'MDB2_PORTABILITY_FIX_CASE{
  729.             $result array_map(($db->options['field_case'== CASE_LOWER ? 'strtolower' 'strtoupper')$result);
  730.         }
  731.         return $result;
  732.     }
  733.  
  734.     // }}}
  735.     // {{{ createIndex()
  736.  
  737.     /**
  738.      * Get the stucture of a field into an array
  739.      *
  740.      * @param string    $table         name of the table on which the index is to be created
  741.      * @param string    $name         name of the index to be created
  742.      * @param array     $definition        associative array that defines properties of the index to be created.
  743.      *                                  Currently, only one property named FIELDS is supported. This property
  744.      *                                  is also an associative with the names of the index fields as array
  745.      *                                  indexes. Each entry of this array is set to another type of associative
  746.      *                                  array that specifies properties of the index that are specific to
  747.      *                                  each field.
  748.      *
  749.      *                                 Currently, only the sorting property is supported. It should be used
  750.      *                                  to define the sorting direction of the index. It may be set to either
  751.      *                                  ascending or descending.
  752.      *
  753.      *                                 Not all DBMS support index sorting direction configuration. The DBMS
  754.      *                                  drivers of those that do not support it ignore this property. Use the
  755.      *                                  function support() to determine whether the DBMS driver can manage indexes.
  756.  
  757.      *                                  Example
  758.      *                                     array(
  759.      *                                         'fields' => array(
  760.      *                                             'user_name' => array(
  761.      *                                                 'sorting' => 'ascending'
  762.      *                                             ),
  763.      *                                             'last_login' => array()
  764.      *                                         )
  765.      *                                     )
  766.      * @return mixed MDB2_OK on success, a MDB2 error on failure
  767.      * @access public
  768.      */
  769.     function createIndex($table$name$definition)
  770.     {
  771.         $db =$this->getDBInstance();
  772.         if (PEAR::isError($db)) {
  773.             return $db;
  774.         }
  775.         $query 'CREATE';
  776.  
  777.         $query_sort '';
  778.         foreach ($definition['fields'as $field{
  779.             if (!strcmp($query_sort''&& isset($field['sorting'])) {
  780.                 switch ($field['sorting']{
  781.                 case 'ascending':
  782.                     $query_sort ' ASC';
  783.                     break;
  784.                 case 'descending':
  785.                     $query_sort ' DESC';
  786.                     break;
  787.                 }
  788.             }
  789.         }
  790.         $table $db->quoteIdentifier($tabletrue);
  791.         $name  $db->quoteIdentifier($db->getIndexName($name)true);
  792.         $query .= $query_sort. " INDEX $name ON $table";
  793.         $fields = array();
  794.         foreach (array_keys($definition['fields']as $field{
  795.             $fields[$db->quoteIdentifier($fieldtrue);
  796.         }
  797.         $query .= ' ('.implode(', '$fields')';
  798.         $result $db->exec($query);
  799.         $this->_silentCommit();
  800.         return $result;
  801.     }
  802.  
  803.     // }}}
  804.     // {{{ listTableIndexes()
  805.  
  806.     /**
  807.      * list all indexes in a table
  808.      *
  809.      * @param string $table name of table that should be used in method
  810.      * @return mixed array of index names on success, a MDB2 error on failure
  811.      * @access public
  812.      */
  813.     function listTableIndexes($table)
  814.     {
  815.         $db =$this->getDBInstance();
  816.         if (PEAR::isError($db)) {
  817.             return $db;
  818.         }
  819.         $table $db->quote(strtoupper($table)'text');
  820.         $query = "SELECT RDB\$INDEX_NAME
  821.                     FROM RDB\$INDICES
  822.                    WHERE UPPER(RDB\$RELATION_NAME)=$table
  823.                      AND RDB\$UNIQUE_FLAG IS NULL
  824.                      AND RDB\$FOREIGN_KEY IS NULL";
  825.         $indexes $db->queryCol($query'text');
  826.         if (PEAR::isError($indexes)) {
  827.             return $indexes;
  828.         }
  829.  
  830.         $result = array();
  831.         foreach ($indexes as $index{
  832.             $index $this->_fixIndexName($index);
  833.             if (!empty($index)) {
  834.                 $result[$index= true;
  835.             }
  836.         }
  837.  
  838.         if ($db->options['portability'MDB2_PORTABILITY_FIX_CASE{
  839.             $result array_change_key_case($result$db->options['field_case']);
  840.         }
  841.         return array_keys($result);
  842.     }
  843.  
  844.     // }}}
  845.     // {{{ createConstraint()
  846.  
  847.     /**
  848.      * create a constraint on a table
  849.      *
  850.      * @param string    $table      name of the table on which the constraint is to be created
  851.      * @param string    $name       name of the constraint to be created
  852.      * @param array     $definition associative array that defines properties of the constraint to be created.
  853.      *                               Currently, only one property named FIELDS is supported. This property
  854.      *                               is also an associative with the names of the constraint fields as array
  855.      *                               constraints. Each entry of this array is set to another type of associative
  856.      *                               array that specifies properties of the constraint that are specific to
  857.      *                               each field.
  858.      *
  859.      *                               Example
  860.      *                                   array(
  861.      *                                       'fields' => array(
  862.      *                                           'user_name' => array(),
  863.      *                                           'last_login' => array(),
  864.      *                                       )
  865.      *                                   )
  866.      * @return mixed MDB2_OK on success, a MDB2 error on failure
  867.      * @access public
  868.      */
  869.     function createConstraint($table$name$definition)
  870.     {
  871.         $db =$this->getDBInstance();
  872.         if (PEAR::isError($db)) {
  873.             return $db;
  874.         }
  875.         $table $db->quoteIdentifier($tabletrue);
  876.         if (!empty($name)) {
  877.             $name $db->quoteIdentifier($db->getIndexName($name)true);
  878.         }
  879.         $query = "ALTER TABLE $table ADD";
  880.         if (!empty($definition['primary'])) {
  881.             if (!empty($name)) {
  882.                 $query.= ' CONSTRAINT '.$name;
  883.             }
  884.             $query.= ' PRIMARY KEY';
  885.         else {
  886.             $query.= ' CONSTRAINT '$name;
  887.             if (!empty($definition['unique'])) {
  888.                $query.= ' UNIQUE';
  889.             }
  890.         }
  891.         $fields = array();
  892.         foreach (array_keys($definition['fields']as $field{
  893.             $fields[$db->quoteIdentifier($fieldtrue);
  894.         }
  895.         $query .= ' ('implode(', '$fields')';
  896.         $result $db->exec($query);
  897.         $this->_silentCommit();
  898.         return $result;
  899.     }
  900.  
  901.     // }}}
  902.     // {{{ listTableConstraints()
  903.  
  904.     /**
  905.      * list all constraints in a table
  906.      *
  907.      * @param string $table name of table that should be used in method
  908.      * @return mixed array of constraint names on success, a MDB2 error on failure
  909.      * @access public
  910.      */
  911.     function listTableConstraints($table)
  912.     {
  913.         $db =$this->getDBInstance();
  914.         if (PEAR::isError($db)) {
  915.             return $db;
  916.         }
  917.         $table $db->quote(strtoupper($table)'text');
  918.         $query = "SELECT RDB\$INDEX_NAME
  919.                     FROM RDB\$INDICES
  920.                    WHERE UPPER(RDB\$RELATION_NAME)=$table
  921.                      AND (
  922.                            RDB\$UNIQUE_FLAG IS NOT NULL
  923.                         OR RDB\$FOREIGN_KEY IS NOT NULL
  924.                      )";
  925.         $constraints $db->queryCol($query);
  926.         if (PEAR::isError($constraints)) {
  927.             return $constraints;
  928.         }
  929.  
  930.         $result = array();
  931.         foreach ($constraints as $constraint{
  932.             $constraint $this->_fixIndexName($constraint);
  933.             if (!empty($constraint)) {
  934.                 $result[$constraint= true;
  935.             }
  936.         }
  937.  
  938.         if ($db->options['portability'MDB2_PORTABILITY_FIX_CASE{
  939.             $result array_change_key_case($result$db->options['field_case']);
  940.         }
  941.         return array_keys($result);
  942.     }
  943.  
  944.     // }}}
  945.     // {{{ createSequence()
  946.  
  947.     /**
  948.      * create sequence
  949.      *
  950.      * @param string $seq_name name of the sequence to be created
  951.      * @param string $start start value of the sequence; default is 1
  952.      * @return mixed MDB2_OK on success, a MDB2 error on failure
  953.      * @access public
  954.      */
  955.     function createSequence($seq_name$start = 1)
  956.     {
  957.         $db =$this->getDBInstance();
  958.         if (PEAR::isError($db)) {
  959.             return $db;
  960.         }
  961.  
  962.         $sequence_name $db->getSequenceName($seq_name);
  963.         if (PEAR::isError($result $db->exec('CREATE GENERATOR '.$sequence_name))) {
  964.             return $result;
  965.         }
  966.         if (PEAR::isError($result $db->exec('SET GENERATOR '.$sequence_name.' TO '.($start-1)))) {
  967.             if (PEAR::isError($err $db->dropSequence($seq_name))) {
  968.                 return $db->raiseError($resultnullnull,
  969.                     'Could not setup sequence start value and then it was not possible to drop it'__FUNCTION__);
  970.             }
  971.         }
  972.         return $result;
  973.     }
  974.  
  975.     // }}}
  976.     // {{{ dropSequence()
  977.  
  978.     /**
  979.      * drop existing sequence
  980.      *
  981.      * @param string $seq_name name of the sequence to be dropped
  982.      * @return mixed MDB2_OK on success, a MDB2 error on failure
  983.      * @access public
  984.      */
  985.     function dropSequence($seq_name)
  986.     {
  987.         $db =$this->getDBInstance();
  988.         if (PEAR::isError($db)) {
  989.             return $db;
  990.         }
  991.  
  992.         $sequence_name $db->getSequenceName($seq_name);
  993.         $sequence_name $db->quote($sequence_name'text');
  994.         $query = "DELETE FROM RDB\$GENERATORS WHERE UPPER(RDB\$GENERATOR_NAME)=$sequence_name";
  995.         return $db->exec($query);
  996.     }
  997.  
  998.     // }}}
  999.     // {{{ listSequences()
  1000.  
  1001.     /**
  1002.      * list all sequences in the current database
  1003.      *
  1004.      * @return mixed array of sequence names on success, a MDB2 error on failure
  1005.      * @access public
  1006.      */
  1007.     function listSequences()
  1008.     {
  1009.         $db =$this->getDBInstance();
  1010.         if (PEAR::isError($db)) {
  1011.             return $db;
  1012.         }
  1013.  
  1014.         $query 'SELECT RDB$GENERATOR_NAME FROM RDB$GENERATORS WHERE RDB$SYSTEM_FLAG IS NULL';
  1015.         $table_names $db->queryCol($query);
  1016.         if (PEAR::isError($table_names)) {
  1017.             return $table_names;
  1018.         }
  1019.         $result = array();
  1020.         foreach ($table_names as $table_name{
  1021.             $result[$this->_fixSequenceName($table_name);
  1022.         }
  1023.         if ($db->options['portability'MDB2_PORTABILITY_FIX_CASE{
  1024.             $result array_map(($db->options['field_case'== CASE_LOWER ? 'strtolower' 'strtoupper')$result);
  1025.         }
  1026.         return $result;
  1027.     }
  1028. }
  1029. ?>

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