Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 PersistenceManager 更新对象而不关闭它时如何提交到数据库?
您需要提交事务。您不需要关闭 PersistenceManager。
PersistenceManager p; ... p.currentTransaction().begin(); .... //do the work p.currentTransaction().commit();