Hi,
i don't get any batching of insert statements from hibernate. I enabled the debug log an can see that the AbstractBatcher
is used (instead of the BatchingBatcher that it should be, shouldn't it?).
In my hibernate.cfg.xml i configured:
Code:
<property name="jdbc.batch_size">10</property>
<property name="jdbc.factory_class">org.hibernate.jdbc.BatchingBatcherFactory</property>
<property name="order_inserts">true</property>
<property name="order_updates">true</property>
Could anybody please tell me why hibernate doesn't use the BatchingBatcher?
Yours
Thomas