is there a solution for batch insert via hibernate in partitioned postgresql table? currently i\'m getting an error like this...
ERROR org.hibernate.jdbc.Abstra
thnx! it did the trick, no problems poped up, so far :)....one thing thou...
i had to implement BatcherFactory
class and put it int the persistence.xml
file,
like this:
property name="hibernate.jdbc.factory_class" value="path.to.my.batcher.factory.implementation"
from that factory i've called my batcher implementation with the code above
ps hibernate core 3.2.6 GA
thanks once again