本文整理匯總了PHP中DBAccess::queryUpdate方法的典型用法代碼示例。如果您正苦於以下問題:PHP DBAccess::queryUpdate方法的具體用法?PHP DBAccess::queryUpdate怎麽用?PHP DBAccess::queryUpdate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類DBAccess
的用法示例。
在下文中一共展示了DBAccess::queryUpdate方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Update
function Update()
{
$insArray["fb_userid"] = $this->fb_userid;
$insArray["fb_username"] = $this->fb_username;
$insArray["fb_firstname"] = $this->fb_firstname;
$insArray["fb_lastname"] = $this->fb_lastname;
$insArray["status"] = $this->status;
$id = DBAccess::queryUpdate(self::$_tablename, $insArray, self::$_primarykey . '=' . $this->fb_userid);
return $id;
}
示例2: Update
function Update()
{
$insArray["f_name"] = $this->firstname;
$insArray["l_name"] = $this->lastname;
$insArray["company"] = $this->company;
$insArray["email"] = $this->email;
$insArray["password"] = $this->password;
$insArray["reg_date"] = $this->regdate;
$insArray["last_log"] = $this->lastlog;
$insArray["status"] = $this->status;
$insArray["act_code"] = $this->act_code;
$id = DBAccess::queryUpdate(self::$_tablename, $insArray, self::$_primarykey . '=' . $this->userid);
return $id;
}
示例3: Update
static function Update()
{
$insArray["itemid"] = null;
$insArray["catid"] = $this->catid;
$insArray["userid"] = $this->userid;
$insArray["name"] = $this->name;
$insArray["temp_img"] = $this->temp_img;
$insArray["desc"] = $this->desc;
$insArray["status"] = $this->status;
$itemid = DBAccess::queryUpdate(self::$_tablename, $insArray, self::$_primarykey . '=' . $this->itemid);
return $itemid;
}