Package-level declarations
Types
Represents a compound SELECT statement in SQL, allowing the combination of results from multiple SELECT statements using operators like UNION, UNION ALL, EXCEPT, and INTERSECT.
Represents a builder for constructing and executing a SQL DELETE statement.
Represents a prepared SQL INSERT statement that can be configured and executed.
Represents a statement for defining the JOIN condition in a KQLite query. This is typically used after specifying the tables to join (INNER JOIN, LEFT JOIN, etc.).
Represents a builder for a SQL SELECT statement.
Represents a configurable UPDATE statement in the KQLite DSL.
Functions
Creates a DELETE statement builder for constructing a custom delete query.
Same as delete() but executes on the given connection
Creates an InsertStatement to construct and execute an SQL INSERT query.
Inserts a new row into the table using the default values for all columns.
Executes SQL DELETE and deletes rows from the table.
Executes SQL INSERT and inserts a single row into the table.
A convenience function for performing a simple SELECT query.
Performs a quick and simple UPDATE operation on the table.
Starts building a SELECT statement with the specified columns.
Begins building a SELECT query statement.
Creates an UPDATE statement for the table.