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

Revision 21514, 4.8 KB checked in by Seasoft, 12 years ago (diff)

#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            break;
44
45        case 'pgsql':
46            return new SC_DB_DBFactory_PGSQL();
47            break;
48
49        default:
50            return new SC_DB_DBFactory();
51        }
52    }
53
54    /**
55     * データソース名を取得する.
56     *
57     * 引数 $dsn が空の場合は, DEFAULT_DSN の値を返す.
58     * DEFAULT_DSN が未定義の場合は void となる.
59     * $dsn が空ではない場合は, $dsn の値を返す.
60     *
61     * @param string $dsn データソース名
62     * @return void|string データソース名
63     */
64    function getDSN($dsn = '') {
65        if (empty($dsn)) {
66            if (defined('DEFAULT_DSN')) {
67                $dsn = DEFAULT_DSN;
68            } else {
69                return '';
70            }
71        }
72        return $dsn;
73    }
74
75    /**
76     * DBのバージョンを取得する.
77     *
78     * @param string $dsn データソース名
79     * @return string データベースのバージョン
80     */
81    function sfGetDBVersion($dsn = '') { return null; }
82
83    /**
84     * MySQL 用の SQL 文に変更する.
85     *
86     * @param string $sql SQL 文
87     * @return string MySQL 用に置換した SQL 文
88     */
89    function sfChangeMySQL($sql) { return null; }
90
91    /**
92     * 昨日の売上高・売上件数を算出する SQL を返す.
93     *
94     * @param string $method SUM または COUNT
95     * @return string 昨日の売上高・売上件数を算出する SQL
96     */
97    function getOrderYesterdaySql($method) { return null; }
98
99    /**
100     * 当月の売上高・売上件数を算出する SQL を返す.
101     *
102     * @param string $method SUM または COUNT
103     * @return string 当月の売上高・売上件数を算出する SQL
104     */
105    function getOrderMonthSql($method) { return null; }
106
107    /**
108     * 昨日のレビュー書き込み件数を算出する SQL を返す.
109     *
110     * @return string 昨日のレビュー書き込み件数を算出する SQL
111     */
112    function getReviewYesterdaySql() { return null; }
113
114    /**
115     * メール送信履歴の start_date の検索条件の SQL を返す.
116     *
117     * @return string 検索条件の SQL
118     */
119    function getSendHistoryWhereStartdateSql() { return null; }
120
121    /**
122     * ダウンロード販売の検索条件の SQL を返す.
123     *
124     * @return string 検索条件の SQL
125     */
126    function getDownloadableDaysWhereSql() { return null; }
127
128    /**
129     * 文字列連結を行う.
130     *
131     * @param array $columns 連結を行うカラム名
132     * @return string 連結後の SQL 文
133     */
134    function concatColumn($columns) { return null; }
135
136    /**
137     * テーブルを検索する.
138     *
139     * 引数に部分一致するテーブル名を配列で返す.
140     *
141     * @deprecated SC_Query::listTables() を使用してください
142     * @param string $expression 検索文字列
143     * @return array テーブル名の配列
144     */
145    function findTableNames($expression = '') { return array(); }
146
147    /**
148     * インデックス作成の追加定義を取得する
149     *
150     * 引数に部分一致するテーブル名を配列で返す.
151     *
152     * @param string $table 対象テーブル名
153     * @param string $name 対象カラム名
154     * @return array インデックス設定情報配列
155     */
156    function sfGetCreateIndexDefinition($table, $name, $definition) { return $definition; }
157
158}
Note: See TracBrowser for help on using the repository browser.