IStatementBuilder
Represents all the DSL methods available when building SQL statements.
Functions
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 only rows in a table that match the provided op, while ignoring any possible errors that occur during the process.
Represents the SQL statement that deletes rows in a table and returns specified data from the deleted rows.
Represents the SQL statement that deletes only rows in a table that match the provided op.
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.
Represents the SQL statement that inserts, updates, or deletes records in a target table based on a comparison with a source table.
Represents the SQL statement that inserts, updates, or deletes records in a 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 rows of a table.
Represents the SQL statement that updates rows of a join relation.
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.