
inmemory.create_db_manager.xslt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orm Show documentation
Show all versions of orm Show documentation
Jinq legacy ORM for generating entity classes from XML
The newest version!
package ;
public class DBManager
{
EntityManager em = new EntityManager(this);
public EntityManager begin()
{
}
public void end(EntityManager em, boolean commit)
{
}
public void doTransaction(Transaction transaction)
{
transaction.execute(em);
}
public static interface Transaction
{
public boolean execute(EntityManager em);
}
public void close()
{
}
public DBManager(boolean logQueries) {}
public DBManager() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy