source: branches/version-2_12-dev/data/class/db/SC_DB_DBFactory.php @ 21553

Revision 21553, 5.0 KB checked in by Seasoft, 12 years ago (diff)

#1666 (create_table_*.sql 間の差異を減らす)

  • text 型のインデックス用の文字長は b-tree の構造からパフォーマンスには実質的な影響は無いと判断し 255 に統一している。(たしかこれが最大長。)

#1607 (未使用定義の削除)

  • dtb_shipping.deliv_id

#1625 (typo修正・ソース整形・ソースコメントの改善)

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1<?php
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2011 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 * DBに依存した処理を抽象化するファクトリークラス.
26 *
27 * @package DB
28 * @author LOCKON CO.,LTD.
29 * @version $Id:SC_DB_DBFactory.php 15532 2007-08-31 14:39:46Z nanasess $
30 */
31class SC_DB_DBFactory {
32
33    /**
34     * DB_TYPE に応じた DBFactory インスタンスを生成する.
35     *
36     * @param string $db_type 任意のインスタンスを返したい場合は DB_TYPE 文字列を指定
37     * @return mixed DBFactory インスタンス
38     */
39    function getInstance($db_type = DB_TYPE) {
40        switch ($db_type) {
41            case 'mysql':
42                return new SC_DB_DBFactory_MYSQL();
43
44            case 'pgsql':
45                return new SC_DB_DBFactory_PGSQL();
46
47            default:
48                return new SC_DB_DBFactory();
49        }
50    }
51
52    /**
53     * データソース名を取得する.
54     *
55     * 引数 $dsn が空の場合は, DEFAULT_DSN の値を返す.
56     * DEFAULT_DSN が未定義の場合は void となる.
57     * $dsn が空ではない場合は, $dsn の値を返す.
58     *
59     * @param string $dsn データソース名
60     * @return void|string データソース名
61     */
62    function getDSN($dsn = '') {
63        if (empty($dsn)) {
64            if (defined('DEFAULT_DSN')) {
65                $dsn = DEFAULT_DSN;
66            } else {
67                return '';
68            }
69        }
70        return $dsn;
71    }
72
73    /**
74     * DBのバージョンを取得する.
75     *
76     * @param string $dsn データソース名
77     * @return string データベースのバージョン
78     */
79    function sfGetDBVersion($dsn = '') { return null; }
80
81    /**
82     * MySQL 用の SQL 文に変更する.
83     *
84     * @param string $sql SQL 文
85     * @return string MySQL 用に置換した SQL 文
86     */
87    function sfChangeMySQL($sql) { return null; }
88
89    /**
90     * 昨日の売上高・売上件数を算出する SQL を返す.
91     *
92     * @param string $method SUM または COUNT
93     * @return string 昨日の売上高・売上件数を算出する SQL
94     */
95    function getOrderYesterdaySql($method) { return null; }
96
97    /**
98     * 当月の売上高・売上件数を算出する SQL を返す.
99     *
100     * @param string $method SUM または COUNT
101     * @return string 当月の売上高・売上件数を算出する SQL
102     */
103    function getOrderMonthSql($method) { return null; }
104
105    /**
106     * 昨日のレビュー書き込み件数を算出する SQL を返す.
107     *
108     * @return string 昨日のレビュー書き込み件数を算出する SQL
109     */
110    function getReviewYesterdaySql() { return null; }
111
112    /**
113     * メール送信履歴の start_date の検索条件の SQL を返す.
114     *
115     * @return string 検索条件の SQL
116     */
117    function getSendHistoryWhereStartdateSql() { return null; }
118
119    /**
120     * ダウンロード販売の検索条件の SQL を返す.
121     *
122     * @return string 検索条件の SQL
123     */
124    function getDownloadableDaysWhereSql() { return null; }
125
126    /**
127     * 文字列連結を行う.
128     *
129     * @param array $columns 連結を行うカラム名
130     * @return string 連結後の SQL 文
131     */
132    function concatColumn($columns) { return null; }
133
134    /**
135     * テーブルを検索する.
136     *
137     * 引数に部分一致するテーブル名を配列で返す.
138     *
139     * @deprecated SC_Query::listTables() を使用してください
140     * @param string $expression 検索文字列
141     * @return array テーブル名の配列
142     */
143    function findTableNames($expression = '') { return array(); }
144
145    /**
146     * インデックス作成の追加定義を取得する
147     *
148     * 引数に部分一致するテーブル名を配列で返す.
149     *
150     * @param string $table 対象テーブル名
151     * @param string $name 対象カラム名
152     * @return array インデックス設定情報配列
153     */
154    function sfGetCreateIndexDefinition($table, $name, $definition) { return $definition; }
155
156    /**
157     * 各 DB に応じた SC_Query での初期化を行う
158     *
159     * @param SC_Query $objQuery SC_Query インスタンス
160     * @return void
161     */
162    function initObjQuery(SC_Query &$objQuery) {
163    }
164}
Note: See TracBrowser for help on using the repository browser.