Package-level declarations
Properties
Functions
Create an EntitySequence from this table.
Construct insert expressions in the given closure, then batch execute them and return the effected row counts for each expression.
Construct update expressions in the given closure, then batch execute them and return the effected row counts for each expression.
Connect to a database using a DataSource and save the returned database instance to Database.Companion.global.
Connect to a database by a specific connector function and save the returned database instance to Database.Companion.global.
Connect to a database using the specific connection arguments and save the returned database instance to Database.Companion.global.
Connect to a database using a DataSource with the Spring support enabled and save the returned database instance to Database.Companion.global.
Join the right table and return a new QuerySource, translated to cross join
in SQL.
Join the right table and return a new QuerySource, translated to inner join
in SQL.
Construct an insert expression in the given closure, then execute it and return the auto-generated key.
Return a new-created Query object, left joining all the reference tables, and selecting all columns of them.
Join the right table and return a new QuerySource, translated to left join
in SQL.
Join the right table and return a new QuerySource, translated to right join
in SQL.
Create a query object, selecting the specific columns or expressions from this table.
Create a query object, selecting the specific columns or expressions from this table distinctly.
Obtain a connection from Database.Companion.global and invoke the callback function with it.
Execute the specific callback function in a transaction of Database.Companion.global and returns its result if the execution succeeds, otherwise, if the execution fails, the transaction will be rollback.