Ignore:
Timestamp:
2007/09/13 12:53:39 (19 years ago)
Author:
nanasess
Message:

テーブル一覧を配列で返す関数を追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/db/SC_DB_DBFactory.php

    r15532 r15692  
    1515 * @package DB 
    1616 * @author LOCKON CO.,LTD. 
    17  * @version $Id$ 
     17 * @version $Id:SC_DB_DBFactory.php 15532 2007-08-31 14:39:46Z nanasess $ 
    1818 */ 
    1919class SC_DB_DBFactory { 
     
    109109     */ 
    110110    function sfGetColumnList($table_name) { return array(); } 
     111 
     112    /** 
     113     * テーブルを検索する. 
     114     * 
     115     * 引数に部分一致するテーブル名を配列で返す. 
     116     * 
     117     * @param string $expression 検索文字列 
     118     * @return array テーブル名の配列 
     119     */ 
     120    function findTableNames($expression) { return array(); } 
    111121} 
    112122?> 
Note: See TracChangeset for help on using the changeset viewer.