Source for file SC_DB_DBFactory_PGSQL.php

Documentation is available at SC_DB_DBFactory_PGSQL.php

  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.lockon.co.jp/
  8.  *
  9.  * This program is free software; you can redistribute it and/or
  10.  * modify it under the terms of the GNU General Public License
  11.  * as published by the Free Software Foundation; either version 2
  12.  * of the License, or (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  22.  */
  23.  
  24.  
  25. // {{{ requires
  26. require_once(CLASS_PATH "db/SC_DB_DBFactory.php");
  27.  
  28. /**
  29.  * PostgreSQL 固有の処理をするクラス.
  30.  *
  31.  * このクラスを直接インスタンス化しないこと.
  32.  * 必ず SC_DB_DBFactory クラスを経由してインスタンス化する.
  33.  * また, SC_DB_DBFactory クラスの関数を必ずオーバーライドしている必要がある.
  34.  *
  35.  * @package DB
  36.  * @author LOCKON CO.,LTD.
  37.  * @version $Id:SC_DB_DBFactory_PGSQL.php 15532 2007-08-31 14:39:46Z nanasess $
  38.  */
  39.  
  40.     /**
  41.      * DBのバージョンを取得する.
  42.      *
  43.      * @param string $dsn データソース名
  44.      * @return string データベースのバージョン
  45.      */
  46.     function sfGetDBVersion($dsn ""{
  47.         $objQuery new SC_Query($this->getDSN($dsn)truetrue);
  48.         $val $objQuery->getOne("select version()");
  49.         $arrLine split(" " $val);
  50.         return $arrLine[0" " $arrLine[1];
  51.     }
  52.  
  53.     /**
  54.      * MySQL 用の SQL 文に変更する.
  55.      *
  56.      * DB_TYPE が PostgreSQL の場合は何もしない
  57.      *
  58.      * @access private
  59.      * @param string $sql SQL 文
  60.      * @return string MySQL 用に置換した SQL 文
  61.      */
  62.     function sfChangeMySQL($sql){
  63.         return $sql;
  64.     }
  65.  
  66.     /**
  67.      * テーブルの存在チェックを行う SQL 文を返す.
  68.      *
  69.      * @return string テーブルの存在チェックを行う SQL 文
  70.      */
  71.     function getTableExistsSql({
  72.         return "  SELECT relname "
  73.              . "    FROM pg_class "
  74.              . "   WHERE (relkind = 'r' OR relkind = 'v') "
  75.              . "     AND relname = ? "
  76.              . "GROUP BY relname";
  77.     }
  78.  
  79.     /**
  80.      * インデックスの検索結果を配列で返す.
  81.      *
  82.      * @param string $index_name インデックス名
  83.      * @param string $table_name テーブル名(PostgreSQL では使用しない)
  84.      * @return array インデックスの検索結果の配列
  85.      */
  86.     function getTableIndex($index_name$table_name ""{
  87.         $objQuery new SC_Query(""truetrue);
  88.         return $objQuery->getAll("SELECT relname FROM pg_class WHERE relname = ?",
  89.                                  array($index_name));
  90.     }
  91.  
  92.     /**
  93.      * インデックスを作成する.
  94.      *
  95.      * @param string $index_name インデックス名
  96.      * @param string $table_name テーブル名
  97.      * @param string $col_name カラム名
  98.      * @param integer $length 作成するインデックスのバイト長
  99.      * @return void 
  100.      */
  101.     function createTableIndex($index_name$table_name$col_name$length 0{
  102.         $objQuery new SC_Query($dsntruetrue);
  103.         $objQuery->query("CREATE INDEX ? ON ? (?)"array($index_name$table_name$col_name));
  104.     }
  105.  
  106.     /**
  107.      * テーブルのカラム一覧を取得する.
  108.      *
  109.      * @param string $table_name テーブル名
  110.      * @return array テーブルのカラム一覧の配列
  111.      */
  112.     function sfGetColumnList($table_name{
  113.         $objQuery new SC_Query();
  114.         $sql "  SELECT a.attname "
  115.              . "    FROM pg_class c, pg_attribute a "
  116.              . "   WHERE c.relname=? "
  117.              . "     AND c.oid=a.attrelid "
  118.              . "     AND a.attnum > 0 "
  119.              . "     AND not a.attname "
  120.              . "    LIKE '........pg.dropped.%........' "
  121.              . "ORDER BY a.attnum";
  122.         $arrColList $objQuery->getAll($sqlarray($table_name));
  123.         $arrColList SC_Utils_Ex::sfswaparray($arrColList);
  124.         return $arrColList["attname"];
  125.     }
  126.  
  127.     /**
  128.      * テーブルを検索する.
  129.      *
  130.      * 引数に部分一致するテーブル名を配列で返す.
  131.      *
  132.      * @param string $expression 検索文字列
  133.      * @return array テーブル名の配列
  134.      */
  135.     function findTableNames($expression ""{
  136.         $objQuery new SC_Query();
  137.         $sql "   SELECT c.relname AS name, "
  138.             .  "     CASE c.relkind "
  139.             .  "     WHEN 'r' THEN 'table' "
  140.             .  "     WHEN 'v' THEN 'view' END AS type "
  141.             .  "     FROM pg_catalog.pg_class c "
  142.             .  "LEFT JOIN pg_catalog.pg_namespace n "
  143.             .  "       ON n.oid = c.relnamespace "
  144.             .  "    WHERE c.relkind IN ('r','v') "
  145.             .  "      AND n.nspname NOT IN ('pg_catalog', 'pg_toast') "
  146.             .  "      AND pg_catalog.pg_table_is_visible(c.oid) "
  147.             .  "      AND c.relname LIKE ?"
  148.             .  " ORDER BY 1,2;";
  149.         $arrColList $objQuery->getAll($sqlarray("%" $expression "%"));
  150.         $arrColList SC_Utils_Ex::sfswaparray($arrColListfalse);
  151.         return $arrColList[0];
  152.     }
  153.     
  154.     
  155.     /**
  156.      * 文字コード情報を取得する
  157.      * 
  158.      * @return array 文字コード情報
  159.      */
  160.      function getCharSet({
  161.          // 未実装
  162.          return array();
  163.      }
  164. }
  165. ?>

Documentation generated on Tue, 28 Apr 2009 18:13:15 +0900 by phpDocumentor 1.4.2