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()
void
set
(DatabasePlatform platform, CallableStatement statement, String parameterName, AbstractSession session) Sets this bound parameter, on the given statement, for the given parameterName.void
set
(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:BindCallCustomParameter
Sets this bound parameter, on the given statement, at the given parameterIndex. Note:PreparedStatement
contains setX(int parameterIndex, X x) methods. This method aligns with that pattern.- Overrides:
set
in classBindCallCustomParameter
- Throws:
SQLException
-
set
public void set(DatabasePlatform platform, CallableStatement statement, String parameterName, AbstractSession session) throws SQLException Description copied from class:BindCallCustomParameter
Sets this bound parameter, on the given statement, for the given parameterName. Note:CallableStatement
contains setX(int parameterName, X x) methods. This method aligns with that pattern.- Overrides:
set
in classBindCallCustomParameter
- Throws:
SQLException
-
getType
-