prepare

abstract fun prepare(args: Array<out Any?>? = null): PreparedStatement

Prepare this statement with the provided args (as applicable), rendering if needed; successive calls to this method may skip superfluous work.

This method prepares the statement into a JDBC PreparedStatement, and is meant for host-side use only.

Return

Parsed, validated, and statement for execution.

Parameters

args

Arguments to render into the query; if a map is provided as the first and only argument, it is used as a suite of named arguments.