CI Framework database BULK INSERT Insert_batch ()

Source: Internet
Author: User
Tags bulk insert

    • AR operations using the CI Framework: insert_batch () can reduce the number of times a database is accessed. One visit.

Example 1:

$dataanarray ('title ' + ' My title ', ' name ' = ' my ' Name ', ' date ' = ' My date ' ), array( ' title ' = ' Another ') Title ', ' name ' = ' Another name ', ' date ' = ' another date ') ; $this $data // generate: INSERT into MyTable (title, name, date) VALUES (' My title ', ' My Name ', ' My Date '), (' Anot Her title ', ' Another name ', ' another date ')

Example 2:

$one _info=Array();$insert _data=Array();$one _info[' role_id '] = 6;$one _info[' operator '] = ' test '; for($i= 0;$i<= 3;$i++) { $one _info[' net_id '] = $i; $insert _data[] =$one _info;}if(!$this->db->insert_batch (TableA,$insert _data)) { return3; }

The inserted SQL statement is insert INTO TableA (role_id,operator,net_id) VALUES (6, ' test ', 0), (6, ' Test ', 1), (6, ' Test ', 2);

Note: The first parameter contains the table name, and the second is an associative array that contains the data.

CI Framework database BULK INSERT Insert_batch ()

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.