sqlg3.runtime.GContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlg3-runtime Show documentation
Show all versions of sqlg3-runtime Show documentation
SQLG is a preprocessor and a library that uses code generation to simplify writing JDBC code
The newest version!
package sqlg3.runtime;
import java.sql.Connection;
public final class GContext {
final GlobalContext global;
private final Object userObject;
final Connection connection;
public GContext(GlobalContext global, Object userObject, Connection connection) {
this.global = global;
this.userObject = userObject;
this.connection = connection;
}
public GlobalContext getGlobal() {
return global;
}
public Object getUserObject() {
return userObject;
}
}