db9010 / com.jovial.db9010 / StatementBuilder

StatementBuilder

abstract class StatementBuilder<K>

Abstract superclass for the builder of all statement types. See also StatementBuilder.doNotCache

Constructors

<init>

Abstract superclass for the builder of all statement types. See also StatementBuilder.doNotCache

StatementBuilder()

Extension Functions

doNotCache

Method to set this builder so that it creates a statement that is not cached by the Database object. By default, statements are cached.

fun <T : StatementBuilder<*>> T.doNotCache(): T

Inheritors

TextStatementBuilder

Superclass for the builder of all statements that can have SQL strings added to the statement body. See TextStatementBuilder.plus.

abstract class TextStatementBuilder<K> : StatementBuilder<K>