Module org.eclipse.persistence.core
Class OutputParameterForCallableStatement
- java.lang.Object
-
- org.eclipse.persistence.internal.databaseaccess.BindCallCustomParameter
-
- org.eclipse.persistence.internal.databaseaccess.OutputParameterForCallableStatement
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InOutputParameterForCallableStatement
public class OutputParameterForCallableStatement extends BindCallCustomParameter
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected DatabasePlatformdbplatformprotected booleanisCursorprotected booleanisTypeNameRequiredprotected intjdbcTypeprotected StringtypeName-
Fields inherited from class org.eclipse.persistence.internal.databaseaccess.BindCallCustomParameter
obj
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedOutputParameterForCallableStatement()OutputParameterForCallableStatement(OutputParameterForCallableStatement outParameter)OutputParameterForCallableStatement(DatabaseField field)OutputParameterForCallableStatement(DatabaseField field, AbstractSession session)OutputParameterForCallableStatement(DatabaseField field, AbstractSession session, boolean isCursor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetJdbcType()DatabaseFieldgetOutputField()StringgetTypeName()booleanisCursor()booleanisTypeNameRequired()voidprepare(AbstractSession session)voidset(DatabasePlatform platform, CallableStatement statement, String parameterName, AbstractSession session)Sets this bound parameter, on the given statement, for the given parameterName.voidset(DatabasePlatform platform, PreparedStatement statement, int parameterIndex, AbstractSession session)Sets this bound parameter, on the given statement, at the given parameterIndex.voidsetIsCursor(boolean isCursor)StringtoString()-
Methods inherited from class org.eclipse.persistence.internal.databaseaccess.BindCallCustomParameter
convert, shouldUseUnwrappedConnection
-
-
-
-
Field Detail
-
isCursor
protected boolean isCursor
-
jdbcType
protected int jdbcType
-
typeName
protected String typeName
-
isTypeNameRequired
protected boolean isTypeNameRequired
-
dbplatform
protected transient DatabasePlatform dbplatform
-
-
Constructor Detail
-
OutputParameterForCallableStatement
public OutputParameterForCallableStatement(DatabaseField field)
-
OutputParameterForCallableStatement
public OutputParameterForCallableStatement(DatabaseField field, AbstractSession session)
-
OutputParameterForCallableStatement
public OutputParameterForCallableStatement(DatabaseField field, AbstractSession session, boolean isCursor)
-
OutputParameterForCallableStatement
public OutputParameterForCallableStatement(OutputParameterForCallableStatement outParameter)
-
OutputParameterForCallableStatement
protected OutputParameterForCallableStatement()
-
-
Method Detail
-
setIsCursor
public void setIsCursor(boolean isCursor)
-
isCursor
public boolean isCursor()
-
isTypeNameRequired
public boolean isTypeNameRequired()
-
getJdbcType
public int getJdbcType()
-
getTypeName
public String getTypeName()
-
getOutputField
public DatabaseField getOutputField()
-
prepare
public void prepare(AbstractSession session)
-
set
public void set(DatabasePlatform platform, PreparedStatement statement, int parameterIndex, AbstractSession session) throws SQLException
Description copied from class:BindCallCustomParameterSets this bound parameter, on the given statement, at the given parameterIndex. Note:PreparedStatementcontains setX(int parameterIndex, X x) methods. This method aligns with that pattern.- Overrides:
setin classBindCallCustomParameter- Throws:
SQLException
-
set
public void set(DatabasePlatform platform, CallableStatement statement, String parameterName, AbstractSession session) throws SQLException
Description copied from class:BindCallCustomParameterSets this bound parameter, on the given statement, for the given parameterName. Note:CallableStatementcontains setX(int parameterName, X x) methods. This method aligns with that pattern.- Overrides:
setin classBindCallCustomParameter- Throws:
SQLException
-
toString
public String toString()
- Overrides:
toStringin classBindCallCustomParameter
-
-