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

Source for file mssql.php

Documentation is available at mssql.php

  1. <?php
  2. // +----------------------------------------------------------------------+
  3. // | PHP versions 4 and 5                                                 |
  4. // +----------------------------------------------------------------------+
  5. // | Copyright (c) 1998-2004 Manuel Lemos, Tomas V.V.Cox,                 |
  6. // | Stig. S. Bakken, Lukas Smith, Frank M. Kromann                       |
  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: Lukas Smith <smith@backendmedia.com>                         |
  43. // +----------------------------------------------------------------------+
  44. //
  45. // $Id: mssql.php,v 1.12 2005/04/19 12:53:42 lsmith Exp $
  46. //
  47.  
  48. require_once 'MDB2/Driver/Reverse/Common.php';
  49.  
  50. /**
  51.  * MDB2 MSSQL driver for the schema reverse engineering module
  52.  *
  53.  * @package MDB2
  54.  * @category Database
  55.  * @author  Lukas Smith <smith@dybnet.de>
  56.  */
  57. class MDB2_Driver_Reverse_mssql extends MDB2_Driver_Reverse_Common
  58. {
  59.     // }}}
  60.     // {{{ tableInfo()
  61.  
  62.     /**
  63.      * Returns information about a table or a result set
  64.      *
  65.      * NOTE: only supports 'table' and 'flags' if <var>$result</var>
  66.      * is a table name.
  67.      *
  68.      * @param object|string $result  MDB2_result object from a query or a
  69.      *                                  string containing the name of a table.
  70.      *                                  While this also accepts a query result
  71.      *                                  resource identifier, this behavior is
  72.      *                                  deprecated.
  73.      * @param int            $mode    a valid tableInfo mode
  74.      *
  75.      * @return array  an associative array with the information requested.
  76.      *                  A MDB2_Error object on failure.
  77.      *
  78.      * @see MDB2_common::tableInfo()
  79.      */
  80.     function tableInfo($result$mode = null)
  81.     {
  82.         $db =$GLOBALS['_MDB2_databases'][$this->db_index];
  83.         if (is_string($result)) {
  84.             /*
  85.              * Probably received a table name.
  86.              * Create a result resource identifier.
  87.              */
  88.             $id $db->_doQuery("SELECT * FROM $result LIMIT 0");
  89.             if (PEAR::isError($id)) {
  90.                 return $id;
  91.             }
  92.  
  93.             $got_string = true;
  94.         elseif (MDB2::isResultCommon($result)) {
  95.             /*
  96.              * Probably received a result object.
  97.              * Extract the result resource identifier.
  98.              */
  99.             $id $result->getResource();
  100.             $got_string = false;
  101.         else {
  102.             /*
  103.              * Probably received a result resource identifier.
  104.              * Copy it.
  105.              * Deprecated.  Here for compatibility only.
  106.              */
  107.             $id $result;
  108.             $got_string = false;
  109.         }
  110.  
  111.         if (!is_resource($id)) {
  112.             return $db->raiseError(MDB2_ERROR_NEED_MORE_DATA);
  113.         }
  114.  
  115.         if ($db->options['portability'MDB2_PORTABILITY_LOWERCASE{
  116.             $case_func 'strtolower';
  117.         else {
  118.             $case_func 'strval';
  119.         }
  120.  
  121.         $count @mssql_num_fields($id);
  122.         $res   = array();
  123.  
  124.         if ($mode{
  125.             $res['num_fields'$count;
  126.         }
  127.  
  128.         for ($i = 0; $i $count$i++{
  129.             $res[$i= array(
  130.                 'table' => $got_string $case_func($result'',
  131.                 'name'  => $case_func(@mssql_field_name($id$i)),
  132.                 'type'  => @mssql_field_type($id$i),
  133.                 'len'   => @mssql_field_length($id$i),
  134.                 // We only support flags for table
  135.                 'flags' => $got_string
  136.                            ? $this->_mssql_field_flags($result@mssql_field_name($id$i)) '',
  137.             );
  138.             if ($mode MDB2_TABLEINFO_ORDER{
  139.                 $res['order'][$res[$i]['name']] $i;
  140.             }
  141.             if ($mode MDB2_TABLEINFO_ORDERTABLE{
  142.                 $res['ordertable'][$res[$i]['table']][$res[$i]['name']] $i;
  143.             }
  144.         }
  145.  
  146.         // free the result only if we were called on a table
  147.         if ($got_string{
  148.             @mssql_free_result($id);
  149.         }
  150.         return $res;
  151.     }
  152.  
  153.     // }}}
  154.     // {{{ _mssql_field_flags()
  155.  
  156.     /**
  157.      * Get a column's flags
  158.      *
  159.      * Supports "not_null", "primary_key",
  160.      * "auto_increment" (mssql identity), "timestamp" (mssql timestamp),
  161.      * "unique_key" (mssql unique index, unique check or primary_key) and
  162.      * "multiple_key" (multikey index)
  163.      *
  164.      * mssql timestamp is NOT similar to the mysql timestamp so this is maybe
  165.      * not useful at all - is the behaviour of mysql_field_flags that primary
  166.      * keys are alway unique? is the interpretation of multiple_key correct?
  167.      *
  168.      * @param string $table   the table name
  169.      * @param string $column  the field name
  170.      *
  171.      * @return string  the flags
  172.      *
  173.      * @access protected
  174.      * @author Joern Barthel <j_barthel@web.de>
  175.      */
  176.     function _mssql_field_flags($table$column)
  177.     {
  178.         $db =$GLOBALS['_MDB2_databases'][$this->db_index];
  179.  
  180.         static $tableName = null;
  181.         static $flags = array();
  182.  
  183.         if ($table != $tableName{
  184.  
  185.             $flags = array();
  186.             $tableName $table;
  187.  
  188.             // get unique and primary keys
  189.             $res $db->queryAll("EXEC SP_HELPINDEX[$table]"nullMDB2_FETCHMODE_ASSOC);
  190.  
  191.             foreach ($res as $val{
  192.                 $keys explode(', '$val['index_keys']);
  193.  
  194.                 if (sizeof($keys> 1{
  195.                     foreach ($keys as $key{
  196.                         $this->_add_flag($flags[$key]'multiple_key');
  197.                     }
  198.                 }
  199.  
  200.                 if (strpos($val['index_description']'primary key')) {
  201.                     foreach ($keys as $key{
  202.                         $this->_add_flag($flags[$key]'primary_key');
  203.                     }
  204.                 elseif (strpos($val['index_description']'unique')) {
  205.                     foreach ($keys as $key{
  206.                         $this->_add_flag($flags[$key]'unique_key');
  207.                     }
  208.                 }
  209.             }
  210.  
  211.             // get auto_increment, not_null and timestamp
  212.             $res $db->queryAll("EXEC SP_COLUMNS[$table]"nullMDB2_FETCHMODE_ASSOC);
  213.  
  214.             foreach ($res as $val{
  215.                 $val array_change_key_case($valCASE_LOWER);
  216.                 if ($val['nullable'== '0'{
  217.                     $this->_add_flag($flags[$val['column_name']]'not_null');
  218.                 }
  219.                 if (strpos($val['type_name']'identity')) {
  220.                     $this->_add_flag($flags[$val['column_name']]'auto_increment');
  221.                 }
  222.                 if (strpos($val['type_name']'timestamp')) {
  223.                     $this->_add_flag($flags[$val['column_name']]'timestamp');
  224.                 }
  225.             }
  226.         }
  227.  
  228.         if (array_key_exists($column$flags)) {
  229.             return(implode(' '$flags[$column]));
  230.         }
  231.         return '';
  232.     }
  233.  
  234.     // }}}
  235.     // {{{ _add_flag()
  236.  
  237.     /**
  238.      * Adds a string to the flags array if the flag is not yet in there
  239.      * - if there is no flag present the array is created
  240.      *
  241.      * @param array  &$array  the reference to the flag-array
  242.      * @param string $value   the flag value
  243.      *
  244.      * @return void 
  245.      *
  246.      * @access protected
  247.      * @author Joern Barthel <j_barthel@web.de>
  248.      */
  249.     function _add_flag(&$array$value)
  250.     {
  251.         if (!is_array($array)) {
  252.             $array = array($value);
  253.         elseif (!in_array($value$array)) {
  254.             array_push($array$value);
  255.         }
  256.     }
  257. }
  258. ?>

Documentation generated on Mon, 11 Mar 2019 14:19:35 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.