Changeset 15693
- Timestamp:
- 2007/09/13 13:01:17 (16 years ago)
- Location:
- branches/feature-module-update/data/class/db
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/class/db/SC_DB_DBFactory.php
r15692 r15693 118 118 * @return array テーブル名の配列 119 119 */ 120 function findTableNames($expression ) { return array(); }120 function findTableNames($expression = "") { return array(); } 121 121 } 122 122 ?> -
branches/feature-module-update/data/class/db/dbfactory/SC_DB_DBFactory_MYSQL.php
r15692 r15693 112 112 * @return array テーブル名の配列 113 113 */ 114 function findTableNames($expression ) {114 function findTableNames($expression = "") { 115 115 $objQuery = new SC_Query(); 116 116 $sql = "SHOW TABLES LIKE ?"; -
branches/feature-module-update/data/class/db/dbfactory/SC_DB_DBFactory_PGSQL.php
r15692 r15693 119 119 * @return array テーブル名の配列 120 120 */ 121 function findTableNames($expression ) {121 function findTableNames($expression = "") { 122 122 $objQuery = new SC_Query(); 123 123 $sql = " SELECT c.relname AS name, "
Note: See TracChangeset
for help on using the changeset viewer.