Currently continueOnFail not directly supported in postgresql and mysql.
- 1 sql line (item 1)
- 2 sql line (item 2)
- 3 sql line (item 3) [error]
get result of 1 and 2.
For postgresql:
- executeQuery: Currently all queries are combined to one. I don’t know if we can get the results of each line.
- insert: all values combined to one query
- update: all values combined to one query
For mysql:
- executeQuery: should be possible
- insert: all values combined to one query
- update: should be possible
For mssql:
- executeQuery: not execute for each item, i think this sould also be fixed
- insert: executeQueryQueue, currently i don’t know
- update: executeQueryQueue, currently i don’t know
Myself i’m interested on postgresql.
If we want to implement it and it requires each query to be executed individually, should it be an option? ( i think it costs performance)