CodeIgniter4
CodeIgniter4 copied to clipboard
[QueryBuilder] `*Batch()` methods are inconsistant
set*Batch()
public function setInsertBatch($key, string $value = '', ?bool $escape = null);
public function setUpdateBatch($key, string $index = '', ?bool $escape = null);
setUpdateBatch() does not have $value.
*Batch()
public function insertBatch(?array $set = null, ?bool $escape = null, int $batchSize = 100);
public function updateBatch(?array $set = null, ?string $index = null, int $batchSize = 100);
updateBatch() does not have $escape.
References
- #5134
- #5148
- #5674
- #6153
- #6294
Related: https://github.com/codeigniter4/CodeIgniter4/pull/6407/ https://github.com/codeigniter4/CodeIgniter4/issues/5149
Closed by #6536