source: branches/feature-module-update/data/class/db/dbfactory/SC_DB_DBFactory_MYSQL.php @ 15123

Revision 15123, 603 bytes checked in by nanasess, 17 years ago (diff)

db パッケージ追加(クラス定義のみ)

  • Property charset set to UTF-8'
  • Property svn:keywords set to Id Revision Date
  • Property svn:mime-type set to 'application/x-httpd-php
Line 
1<?php
2/*
3 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7
8// {{{ requires
9require_once(CLASS_PATH . "db/SC_DB_DBFactory.php");
10
11/**
12 * MySQL 固有の処理をするクラス.
13 *
14 * このクラスを直接インスタンス化しないこと.
15 * 必ず SC_DB_DBFactory クラスを経由してインスタンス化する.
16 * また, SC_DB_DBFactory クラスの関数を必ずオーバーライドしている必要がある.
17 *
18 * @package DB
19 * @author LOCKON CO.,LTD.
20 * @version $Id$
21 */
22class SC_DB_DBFactory_MYSQL extends SC_DB_DBFactory {
23
24}
25?>
Note: See TracBrowser for help on using the repository browser.