Package org.hibernate.sql.exec.spi
Interface JdbcParameterBinder
-
- All Known Subinterfaces:
Literal
- All Known Implementing Classes:
AbstractJdbcParameter
,ColumnValueParameter
,FilterJdbcParameter
,JdbcLiteral
,JdbcParameterImpl
,QueryLiteral
,SqlTypedMappingJdbcParameter
,VersionTypeSeedParameterSpecification
public interface JdbcParameterBinder
Performs parameter value binding to a JDBC PreparedStatement.
-
-
Field Summary
Fields Modifier and Type Field Description static JdbcParameterBinder
NOOP
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
bindParameterValue(PreparedStatement statement, int startPosition, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext)
Bind the appropriate value in the JDBC statement
-
-
-
Field Detail
-
NOOP
static final JdbcParameterBinder NOOP
-
-
Method Detail
-
bindParameterValue
void bindParameterValue(PreparedStatement statement, int startPosition, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext) throws SQLException
Bind the appropriate value in the JDBC statement- Throws:
SQLException
-
-