Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
Actually, batch can either set bulk at the connection level, and cannot be disabled for a specific batch. This task is to permit using command like :
await conn.batch({ bulk: false, sql: 'INSERT INTO TABLE VALUES (?,?)' }, [ |
[1, 'john'], |
[2, 'jack'] |
]);
|