laravelBatch icon indicating copy to clipboard operation
laravelBatch copied to clipboard

insert batch and update batch in laravel

Results 27 laravelBatch issues
Sort by recently updated
recently updated
newest added

mysql requires \\\\ to escape " in a query the correct query should be: ``` UPDATE `test_rows` SET `test_column` = '{"name":"some \\"quoted\\" word"}' WHERE `id` = 1; ``` but running...

`PHP 7.4.15 (cli) (built: Feb 16 2021 01:48:03) ( NTS )` `production.ERROR: syntax error, unexpected 'return' (T_RETURN) {"exception":"[object] (ParseError(code: 0): syntax error, unexpected 'return' (T_RETURN) at /back_end/vendor/mavinoo/laravel-batch/src/Batch.php:275)` https://github.com/mavinoo/laravelBatch/blob/master/src/Batch.php#L275

Hi, I have massive data from external API, and to avoid duplicates, I need to use update instead of insert.SO the idea is to insert the data if it does...

I got error and could not update the data. It says - "message": "Class 'App\\Http\\Controllers\\API\\Batch' not found", when I submit the data.

json_encode add parm ![image](https://user-images.githubusercontent.com/52774045/139011401-9ed21c34-398f-4f32-b2f6-012c08c51f0e.png)

I have: ` [ [ "id" => "40142" "invoice_number" => null ], [ "id" => "40108" "invoice_number" => "555" ] ] ` Case with null - don't work. How can...

If I want to update 10,000 pieces of data, I will concatenate a long SQL statement. When this happens, IT is recommended to send the changed data to the database...

```php public static function mysql_escape($fieldValue) { if (is_array($fieldValue)) { return array_map(__METHOD__, $fieldValue); } if (is_bool($fieldValue)) { return (int)$fieldValue; } if (self::is_json($fieldValue)) { return self::safeJson($fieldValue); } if (!empty($fieldValue) && is_string($fieldValue)) {...

Does this cover uses cases where you want to update over 1 million rows (tracking the results/timestamps is not needed)

Json current: {"title":"Áo thun trắng xanh đen 1231","description":"Áo thun trắng xanh đen 12345"} After update Batch: {"title":"u00c1o thun tru1eafng xanh u0111en 1231","description":"u00c1o thun tru1eafng xanh u0111en 12345"}