Module org.eclipse.persistence.core
Class InParameterForCallableStatement
java.lang.Object
org.eclipse.persistence.internal.databaseaccess.BindCallCustomParameter
org.eclipse.persistence.internal.databaseaccess.InParameterForCallableStatement
- All Implemented Interfaces:
Serializable
- See Also:
-
Field Summary
FieldsFields inherited from class org.eclipse.persistence.internal.databaseaccess.BindCallCustomParameter
obj -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionClass<?> getType()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.Methods inherited from class org.eclipse.persistence.internal.databaseaccess.BindCallCustomParameter
convert, shouldUseUnwrappedConnection, toString
-
Field Details
-
inParameter
-
inField
-
-
Constructor Details
-
InParameterForCallableStatement
-
-
Method Details
-
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
-
getType
-