nekoinemo
08/13/2018, 9:05 AMbatchInsert()
, requests printed in console are all separate inserts rather than INSERT INTO table (col1, col2) VALUES (val11, val12), (val21, val22), (val31, val32)
. Am i misunderstanding how batch supposed to work in Exposed?tapac
08/13/2018, 1:17 PMPreparedStatement.addBatch
and sets parameters.nekoinemo
08/13/2018, 4:14 PM