DB::executeMultiple()

DB::executeMultiple() -- Several executes a prepared SQL query

Description

mixed executeMultiple (string $stmt, array $data)

This function does several execute() calls on the same statement handle. $data must be an array indexed numerically from 0, one execute call is done for every "row" in the array. If an error occurs during execute(), executeMultiple() does not execute the unfinished rows, but rather returns that error. See "Execute"-section for further information.

Parameter

Returns