Search in sources :

Example 1 with ProcedureCallImpl

use of org.hibernate.procedure.internal.ProcedureCallImpl in project hibernate-orm by hibernate.

the class AbstractSharedSessionContract method createStoredProcedureCall.

@Override
@SuppressWarnings("UnnecessaryLocalVariable")
public ProcedureCall createStoredProcedureCall(String procedureName, String... resultSetMappings) {
    checkOpen();
    final ProcedureCall procedureCall = new ProcedureCallImpl(this, procedureName, resultSetMappings);
    //		call.setComment( "Dynamic stored procedure call" );
    return procedureCall;
}
Also used : ProcedureCall(org.hibernate.procedure.ProcedureCall) ProcedureCallImpl(org.hibernate.procedure.internal.ProcedureCallImpl)

Example 2 with ProcedureCallImpl

use of org.hibernate.procedure.internal.ProcedureCallImpl in project hibernate-orm by hibernate.

the class AbstractSharedSessionContract method createStoredProcedureCall.

@Override
@SuppressWarnings("UnnecessaryLocalVariable")
public ProcedureCall createStoredProcedureCall(String procedureName, Class... resultClasses) {
    checkOpen();
    final ProcedureCall procedureCall = new ProcedureCallImpl(this, procedureName, resultClasses);
    //		call.setComment( "Dynamic stored procedure call" );
    return procedureCall;
}
Also used : ProcedureCall(org.hibernate.procedure.ProcedureCall) ProcedureCallImpl(org.hibernate.procedure.internal.ProcedureCallImpl)

Aggregations

ProcedureCall (org.hibernate.procedure.ProcedureCall)2 ProcedureCallImpl (org.hibernate.procedure.internal.ProcedureCallImpl)2