max wrote:
all PreparedStatements is created via the AbstractBatcher and its subclasses.
The actual pre-generated sql is available in AbstractEntityPersister
What do you need the PreparedStatement for ?
Thanks a lot for your help!
I'm working in developing team that is using Hibernate since April and we encountered some performances problems while inserting a large amounts of objects, (we can't use batch-size <> 0 with Oracle DB); so i've thinked to create a Batcher that uses PreparedStatement of mapped classes to do CRUD operations.