operator fun <T : TextStatementBuilder<*>> T.plus(s: String): T
Add a SQL string to the statement being built.
operator fun <T : TextStatementBuilder<*>> T.plus(p: Parameter<*>): T
Add a parameter to the statement being built. The text "?" is added, and the parameter is recorded so that the parameter's index can be determined when the statement is run.
operator fun <T : TextStatementBuilder<*>> T.plus(c: Column<*>): T
Add a column to the statement being built. The column's string representation in SQL is added. See TextStatementBuilder.qualifyColumnNames
operator fun <T : TextStatementBuilder<*>> T.plus(t: Table): T
Add a table to the statement being built. The table's name is appended.