abstract class StatementBuilder<K>
Abstract superclass for the builder of all statement types. See also StatementBuilder.doNotCache
<init> |
Abstract superclass for the builder of all statement types. See also StatementBuilder.doNotCache StatementBuilder() |
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 |
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> |