Changeset 23605 for branches/version-2_13-dev/data/class/db
- Timestamp:
- 2014/08/27 18:45:58 (12 years ago)
- Location:
- branches/version-2_13-dev/data/class/db
- Files:
-
- 4 edited
-
SC_DB_DBFactory.php (modified) (3 diffs)
-
SC_DB_MasterData.php (modified) (2 diffs)
-
dbfactory/SC_DB_DBFactory_MYSQL.php (modified) (1 diff)
-
dbfactory/SC_DB_DBFactory_PGSQL.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/data/class/db/SC_DB_DBFactory.php
r23546 r23605 35 35 * 36 36 * @param string $db_type 任意のインスタンスを返したい場合は DB_TYPE 文字列を指定 37 * @return mixedDBFactory インスタンス37 * @return SC_DB_DBFactory DBFactory インスタンス 38 38 */ 39 39 public function getInstance($db_type = DB_TYPE) … … 58 58 * $dsn が空ではない場合は, $dsn の値を返す. 59 59 * 60 * @param mixed$dsn データソース名61 * @return mixedデータソース名またはDB接続パラメータの連想配列60 * @param string $dsn データソース名 61 * @return string データソース名またはDB接続パラメータの連想配列 62 62 */ 63 63 public function getDSN($dsn = '') … … 158 158 * 文字列連結を行う. 159 159 * 160 * @param array$columns 連結を行うカラム名160 * @param string[] $columns 連結を行うカラム名 161 161 * @return string 連結後の SQL 文 162 162 */ -
branches/version-2_13-dev/data/class/db/SC_DB_MasterData.php
r23546 r23605 223 223 * 224 224 * @param string $name マスターデータ名 225 * @return bool 消去した場合 true225 * @return boolean|null 消去した場合 true 226 226 */ 227 227 public function clearCache($name) … … 247 247 * 248 248 * @param string $name マスターデータ名 249 * @param array $masterData マスターデータ250 249 * @param bool $isDefine 定数を生成する場合 true 251 * @param array$commentColumn [0] => キー, [1] => コメント文字列,250 * @param string[] $commentColumn [0] => キー, [1] => コメント文字列, 252 251 * [2] => 表示順 を表すカラム名を格納した配列 253 252 * @return bool キャッシュの生成に成功した場合 true -
branches/version-2_13-dev/data/class/db/dbfactory/SC_DB_DBFactory_MYSQL.php
r23546 r23605 216 216 * 文字列連結を行う. 217 217 * 218 * @param array$columns 連結を行うカラム名218 * @param string[] $columns 連結を行うカラム名 219 219 * @return string 連結後の SQL 文 220 220 */ -
branches/version-2_13-dev/data/class/db/dbfactory/SC_DB_DBFactory_PGSQL.php
r23546 r23605 199 199 * 文字列連結を行う. 200 200 * 201 * @param array$columns 連結を行うカラム名201 * @param string[] $columns 連結を行うカラム名 202 202 * @return string 連結後の SQL 文 203 203 */
Note: See TracChangeset
for help on using the changeset viewer.
