Java org.springframework.jdbc.object StoredProcedure fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.jdbc.object StoredProcedure fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.jdbc.object StoredProcedure.

The text is from its open source code.

Subclass

org.springframework.jdbc.object.StoredProcedure has subclasses.
Click this link to see all its subclasses.

Method

voidcompile()
Compile this query.
voiddeclareParameter(SqlParameter param)
Declare a parameter.
Mapexecute(Object... inParams)
Execute the stored procedure with the provided parameter values.
Mapexecute(Map inParams)
Execute the stored procedure.
Mapexecute(ParameterMapper inParamMapper)
Execute the stored procedure.
StringgetSql()
Subclasses can override this to supply dynamic SQL if they wish, but SQL is normally set by calling the #setSql method or in a subclass constructor.
booleanisFunction()
Return whether this call is for a function.
voidsetFunction(boolean function)
Set whether this call is for a function.