Source for file SC_DB_DBFactory.php
Documentation is available at SC_DB_DBFactory.php
* This file is part of EC-CUBE
* Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
* http://www.lockon.co.jp/
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
require_once(CLASS_PATH .
"db/dbfactory/SC_DB_DBFactory_MYSQL.php");
require_once(CLASS_PATH .
"db/dbfactory/SC_DB_DBFactory_PGSQL.php");
* DBに依存した処理を抽象化するファクトリークラス.
* @author LOCKON CO.,LTD.
* @version $Id:SC_DB_DBFactory.php 15532 2007-08-31 14:39:46Z nanasess $
* DB_TYPE に応じた DBFactory インスタンスを生成する.
* @return mixed DBFactory インスタンス
* 引数 $dsn が空の場合は, DEFAULT_DSN の値を返す.
* DEFAULT_DSN が未定義の場合は void となる.
* $dsn が空ではない場合は, $dsn の値を返す.
* @param string $dsn データソース名
* @return void|stringデータソース名
* @param string $dsn データソース名
* @return string データベースのバージョン
* @param string $sql SQL 文
* @return string MySQL 用に置換した SQL 文
* テーブルの存在チェックを行う SQL 文を返す.
* @return string テーブルの存在チェックを行う SQL 文
* @param string $index_name インデックス名
* @param string $table_name テーブル名
* @return array インデックスの検索結果の配列
function getTableIndex($index_name, $table_name =
"") { return array(); }
* @param string $index_name インデックス名
* @param string $table_name テーブル名
* @param string $col_name カラム名
* @param integer $length 作成するインデックスのバイト長
* @param string $table_name テーブル名
* @return array テーブルのカラム一覧の配列
* @param string $expression 検索文字列
Documentation generated on Tue, 28 Apr 2009 18:13:14 +0900 by phpDocumentor 1.4.2