class Parameter<T>
A parameter to an SQL statement. Parameters are represented as "?" in the text of a SQL statement. Before executing a statement, they can be set, using ParameterSetter.set, which sets one the underlying java.sql.PreparedStatement's parameter values.
<init> |
A parameter to an SQL statement. Parameters are represented as "?" in the text of a SQL statement. Before executing a statement, they can be set, using ParameterSetter.set, which sets one the underlying java.sql.PreparedStatement's parameter values. Parameter(adapter: ValueAdapter<T>) |
adapter |
This parameters Kotlin type, and a converter between that and JDBC's type system. val adapter: ValueAdapter<T> |