Changeset 16938 for branches/feature-module-update/data/class/db
- Timestamp:
- 2007/12/20 14:02:40 (19 years ago)
- Location:
- branches/feature-module-update/data/class/db/dbfactory
- Files:
-
- 2 edited
-
SC_DB_DBFactory_MYSQL.php (modified) (1 diff)
-
SC_DB_DBFactory_PGSQL.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/class/db/dbfactory/SC_DB_DBFactory_MYSQL.php
r16741 r16938 69 69 return $sql; 70 70 } 71 71 72 /** 73 * 文字コード情報を取得する 74 * 75 * @return array 文字コード情報 76 */ 77 function getCharSet() { 78 $objQuery = new SC_Query(); 79 $arrRet = $objQuery->getAll("SHOW VARIABLES LIKE 'char%'"); 80 return $arrRet; 81 } 82 72 83 /** 73 84 * テーブルの存在チェックを行う SQL 文を返す. -
branches/feature-module-update/data/class/db/dbfactory/SC_DB_DBFactory_PGSQL.php
r16741 r16938 153 153 return $arrColList[0]; 154 154 } 155 156 157 /** 158 * 文字コード情報を取得する 159 * 160 * @return array 文字コード情報 161 */ 162 function getCharSet() { 163 // 未実装 164 return array(); 165 } 155 166 } 156 167 ?>
Note: See TracChangeset
for help on using the changeset viewer.
