Phalcon Query Tips

Source: Internet
Author: User
A brief introduction to several tips for using Phalcon queries

1. Use Find, and in to query, as follows:

$orderIdList = Array_unique (Array_map (' intval ', $orderIdList)), if ($orderIdList) {$orderList = Childorder::find ([' Conditions ' + ' parents_id in ({Orderidlist:array}) ', ' bind ' =>[' orderidlist ' = = $orderIdList]]);}
Here the $orderidlist is an array, using this query method to query out a similar effect
SELECT * from ' Childorder ' where parents_id in ($orderIdList);

2. Skillfully use model to update data in batches

The above has queried the object $orderlist, next to bulk modify the value of a column in the object, you can do this

foreach ($orderList as $row) {$row->state = 0;if ($row->save () = = False) {foreach ($orderList->getmessages () as $m Essage) {throw new \Exception(' update failed ');}}}
This effect is similar to
Update ' Childorder ' set state = 0 where parents_id in ($orderIdList);

The above describes the Phalcon query skills, including the exception aspects of the content, I hope that the PHP tutorial interested in a friend helpful.

  • 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.