You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for this has been added in #84. The interface follows the norms of Hibernate. Through a session, you can beginTransaction() to get a Transaction object, on which one can later call .commit() or .rollback().
Currently trying to populate a sqlite database, I just read a very large file line by line, create one object from each line then sess.save(myObject)
It then eats up all my memory and fail... Is there a way to explicitely commit (like sess.commit()) ?
The text was updated successfully, but these errors were encountered: