All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sqlg3.runtime.GContext Maven / Gradle / Ivy

Go to download

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy