We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$this->db->table('demo')->where('id', $id)->update( ['sitemap'=>'sitemap', 'site'=>'site']);
SQL : UPDATE demo SET sitemap = :sitemap, site = :site
demo
sitemap
site
return :
CodeIgniter\Database\Query Object ( [originalQueryString:protected] => UPDATEdemoSETsitemap= :sitemap,site= :site WHEREid= :id [finalQueryString:protected] => UPDATEdemoSETsitemap= 'site'map,site= 'site' WHEREid= 1
CodeIgniter\Database\Query Object ( [originalQueryString:protected] => UPDATE
SET
= :sitemap,
= :site WHERE
= :id [finalQueryString:protected] => UPDATE
= 'site'map,
= 'site' WHERE
= 1
Matching error: :sitemap and :site
The text was updated successfully, but these errors were encountered:
31ef265
lonnieezell
No branches or pull requests
$this->db->table('demo')->where('id', $id)->update( ['sitemap'=>'sitemap', 'site'=>'site']);
SQL : UPDATE
demo
SETsitemap
= :sitemap,site
= :sitereturn :
CodeIgniter\Database\Query Object ( [originalQueryString:protected] => UPDATE
demoSET
sitemap= :sitemap,
site= :site WHERE
id= :id [finalQueryString:protected] => UPDATE
demoSET
sitemap= 'site'map,
site= 'site' WHERE
id= 1
Matching error: :sitemap and :site
The text was updated successfully, but these errors were encountered: