[生き残れるか]EC-CUBE[4店舗目]
■ このスレッドは過去ログ倉庫に格納されています
0802nobodyさん
2010/04/21(水) 17:15:32ID:7iMO61fx>>801
SC_Db ですが、現状、以下です。
$this->result = $result;
return $this->result;
}
// function getCol($n, $col, $arr = "") {
// mysqlの場合にはビュー表を変換する
if (DB_TYPE == "mysql") $n = $this->dbFactory->sfChangeMySQL($n);
//if ($arr) {
●$result = $this->conn->getCol($n, $col, $arr);
} else {
$result = $this->conn->getCol($n, $col);
}
if ($this->conn->isError($result)) {
$this->send_err_mail($result, $n);
}
$this->result = $result;
return $this->result;
}
// SELECT文の実行結果を全て取得
function getAll($n, $arr = ""){
// mysqlの場合にはビュー表を変換する
if (DB_TYPE == "mysql") $n = $this->dbFactory->sfChangeMySQL($n);
if(PEAR::isError($this->conn)) {
if(ADMIN_MODE){
■ このスレッドは過去ログ倉庫に格納されています