Goodafternoon,
First of all, thank you for this superb framework.
It would be a nice addition if the framework supports some kind of bulk insertion mechanism.
See example below:
Operation INSERT_NAME_1K = insertInto(TRAN)
.withGeneratedValue("ID", ValueGenerators.sequence().startingAt(1L).incrementingBy(1))
.columns("NAME", "ADDRESS")
.values("Donald", "Duckstad")
.valuesToRepeat("Donald", "Donald").times(1000)
.build();
Goodafternoon,
First of all, thank you for this superb framework.
It would be a nice addition if the framework supports some kind of bulk insertion mechanism.
See example below:
Operation INSERT_NAME_1K = insertInto(TRAN)
.withGeneratedValue("ID", ValueGenerators.sequence().startingAt(1L).incrementingBy(1))
.columns("NAME", "ADDRESS")
.values("Donald", "Duckstad")
.valuesToRepeat("Donald", "Donald").times(1000)
.build();