Hello,
I use an odbc driver with NHibernate 1.2 to load my objects from .dbf files. That works perfectly, but I've a problem to save my objects to the database as the odbc driver doesn't support transactions...
So I would like to save an object (which will result in an INSERT or UPDATE) outside of a transaction.
I've read the article
http://www.hibernate.org/403.html and tried to write this:
session.Save(item);
session.Close();
and in the config file:
<property name="connection.autocommit">true</property>
Unfortunately this doesn't work. Although I get no error, no row is inserted in the database...
Is there an other way to update/insert without transaction ?
Thank you in advance for any advices.
Best regards,
mathmax