for a single insert we have
INSERT
INTO table_name (pk, column1) VALUES (1, 'string')
RETURNING pk INTO :ids
how can i handle DML returning inserted ids value with INSERT ALL statement?
You wouldn't use INSERT ALL, you would use connection.executeMany. See Batch Statement Execution.
thanks,
I did it with the executemany