org.nkjmlab.sorm4j.OrmTransaction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sorm4j Show documentation
Show all versions of sorm4j Show documentation
Simple micro Object-Relation Mapper for Java
package org.nkjmlab.sorm4j;
/**
* An transaction with object relation mapping.
*
* @author nkjm
*/
public interface OrmTransaction extends OrmConnection {
/**
* Closes the {@link java.sql.Connection} associated with this instance.
*
* Note: If you do not explicitly commit in a opened transaction, it will be
* rolled back.
*
* @see java.sql.Connection#close()
*/
@Override
void close();
}