public interface

ValueBinder

org.hibernate.type.descriptor.ValueBinder<X>
Known Indirect Subclasses

Class Overview

Contract for binding values to a PreparedStatement.

Summary

Public Methods
abstract void bind(PreparedStatement st, X value, int index, WrapperOptions options)
Bind a value to a prepared statement.

Public Methods

public abstract void bind (PreparedStatement st, X value, int index, WrapperOptions options)

Bind a value to a prepared statement.

Parameters
st The prepared statement to which to bind the value.
value The value to bind.
index The position at which to bind the value within the prepared statement
options The options.
Throws
SQLException Indicates a JDBC error occurred.