Package-level declarations
Types
Represents a SizedIterable that is empty and cannot be iterated over.
Represents an SQL operation that returns the distinct results of firstStatement that are not common to secondStatement.
An exception that provides information about a database access error, within the contexts of the executed statements that caused the exception.
Represents an SQL operation that returns only the common rows from two query results, without any duplicates.
Represents a SizedIterable whose elements are only loaded on first access.
Represents the iterable elements of a database result, which are stored once loaded on first access.
Class representing an SQL SELECT
statement on which query clauses can be built.
Class representing the underlying R2DBC database to which connections are made and on which transaction tasks are performed.
Class responsible for managing the scope of the underlying R2DBC database connection object.
Utility functions that assist with creating, altering, and dropping database schema objects.
Represents an SQL operation that combines the results of multiple queries into a single result.
Represents a SizedIterable that defers to the specified delegate collection.
Represents the iterable elements of a database result.
Represents an SQL operation that combines all results from two queries, without any duplicates.
Represents an SQL operation that combines all results from two queries, with duplicates included.
Properties
Functions
Adds one or more org.jetbrains.exposed.v1.sql.SqlLoggers to this transaction.
Represents the SQL statement that batch inserts new rows into a table.
Represents the SQL statement that either batch inserts new rows into a table, or, if insertions violate unique constraints, first deletes the existing rows before inserting new rows.
Represents the SQL statement that either batch inserts new rows into a table, or updates the existing rows if insertions violate unique constraints.
Represents the SQL statement that deletes all rows from a table in a join relation.
Represents the SQL statement that deletes rows from a table in a join relation.
Represents the SQL statement that deletes all rows in a table and returns specified data from the deleted rows.
Represents the SQL statement that deletes rows in a table and returns specified data from the deleted rows.
Returns an EmptySizedIterable.
Creates an ExplainQuery using the EXPLAIN
keyword, which obtains information about a statement execution plan.
Represents the SQL statement that inserts a new row into a table.
Represents the SQL statement that uses data retrieved from a selectQuery to insert new rows into a table.
Represents the SQL statement that inserts a new row into a table, while ignoring any possible errors that occur during the process.
Represents the SQL statement that uses data retrieved from a selectQuery to insert new rows into a table, while ignoring any possible errors that occur during the process.
Represents the SQL statement that inserts new rows into a table and returns specified data from the inserted rows.
Returns a SizedIterable containing the lazily evaluated results of applying the function f to each original element.
Performs an SQL MERGE operation to insert, update, or delete records in the target table based on a comparison with a source table.
Performs an SQL MERGE operation to insert, update, or delete records in the target table based on a comparison with a select query source.
Represents the SQL statement that either inserts a new row into a table, or, if insertion would violate a unique constraint, first deletes the existing row before inserting a new row.
Represents the SQL statement that uses data retrieved from a selectQuery to either insert a new row into a table, or, if insertion would violate a unique constraint, first delete the existing row before inserting a new row.
Represents the SQL statement that updates all rows of a table.
Represents the SQL statement that updates all rows of a join relation.
Represents the SQL statement that updates rows of a table.
Represents the SQL statement that updates rows of a join relation.
Represents the SQL statement that updates all rows of a table and returns specified data from the updated rows.
Represents the SQL statement that updates rows of a table and returns specified data from the updated rows.
Represents the SQL statement that either inserts a new row into a table, or updates the existing row if insertion would violate a unique constraint.
Represents the SQL statement that either inserts a new row into a table, or updates the existing row if insertion would violate a unique constraint, and also returns specified data from the modified rows.