In CodeIgniter's Query Builder, what method is used to insert a batch of data into a database table?

  • batchInsert()
  • bulkInsert()
  • insertBatch()
  • multiInsert()
The method used to insert a batch of data into a database table in CodeIgniter's Query Builder is insertBatch(). This is handy when you need to insert multiple records at once.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *