db9010 / com.jovial.db9010 / Parameter

Parameter

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.

Constructors

<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>)

Properties

adapter

This parameters Kotlin type, and a converter between that and JDBC's type system.

val adapter: ValueAdapter<T>