@@ -1588,6 +1588,17 @@ Class Reference
1588
1588
``INSERT `` queries will be executed, each trying to insert
1589
1589
up to ``$batch_size `` rows.
1590
1590
1591
+ .. php :method :: setInsertBatch($key[, $value = ''[, $escape = null]])
1592
+ :param mixed $key: Field name or an array of field/value pairs
1593
+ :param string $value: Field value, if $key is a single field
1594
+ :param bool $escape: Whether to escape values
1595
+ :returns: ``BaseBuilder `` instance (method chaining)
1596
+ :rtype: ``BaseBuilder ``
1597
+
1598
+ Adds field/value pairs to be inserted in a table later via ``insertBatch() ``.
1599
+
1600
+ .. important :: This method is deprecated. It will be removed in future releases.
1601
+
1591
1602
.. php :method :: update([$set = null[, $where = null[, $limit = null]]])
1592
1603
1593
1604
:param array $set: An associative array of field/value pairs
@@ -1650,6 +1661,17 @@ Class Reference
1650
1661
1651
1662
This allows setting an alias for the psuedo table generated with ``setData() ``.
1652
1663
1664
+ .. php :method :: setUpdateBatch($key[, $value = ''[, $escape = null]])
1665
+ :param mixed $key: Field name or an array of field/value pairs
1666
+ :param string $value: Field value, if $key is a single field
1667
+ :param bool $escape: Whether to escape values
1668
+ :returns: ``BaseBuilder `` instance (method chaining)
1669
+ :rtype: ``BaseBuilder ``
1670
+
1671
+ Adds field/value pairs to be updated in a table later via ``updateBatch() ``.
1672
+
1673
+ .. important :: This method is deprecated. It will be removed in future releases.
1674
+
1653
1675
.. php :method :: replace([$set = null])
1654
1676
1655
1677
:param array $set: An associative array of field/value pairs
0 commit comments