Updatetableset statement for fields in zendframework

Source: Internet
Author: User
When Db classes are used in zendframework, the framework automatically adds quotation marks to SQL statements to prevent database attacks. that is to say, updatetableseta = a + 1 will not be resolved to updatetableset.

When using Db classes in zendframework, the framework automatically adds quotation marks to SQL statements to prevent database attacks, that is

Update table set a = a + 1 will not be parsed as update table set a = 'A + 1', which of course cannot be correct. the solution is as follows:

$ Oid = $ this-> getRequest ()-> getParam ('option ');

$ Vote = new Vote ();

$ Db = $ vote-> getAdapter ();

$ Set = array ('optionnum' => new Zend_Db_Expr ('optionnum + 1 '));

$ Where = $ db-> quoteInto ('oid =? ', $ Oid );

$ Affected_rows = $ vote-> update ($ set, $ where );

Zend_Db_ExprThis class removes the quotation marks for the type to be converted!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.