Uses of Class
io.github.torand.fastersql.model.Table
Packages that use Table
Package
Description
Provides classes representing join clauses.
Provides classes representing the database model.
Provides classes and interfaces related to statements.
-
Uses of Table in io.github.torand.fastersql.join
Methods in io.github.torand.fastersql.join that return Table -
Uses of Table in io.github.torand.fastersql.model
Classes in io.github.torand.fastersql.model with type parameters of type TableMethods in io.github.torand.fastersql.model that return TableConstructors in io.github.torand.fastersql.model with parameters of type Table -
Uses of Table in io.github.torand.fastersql.statement
Methods in io.github.torand.fastersql.statement with parameters of type TableModifier and TypeMethodDescriptionstatic DeleteStatement
Statements.deleteFrom
(Table<?> table) Creates a DELETE statement with specified FROM clause.Creates a DELETE statement with specified FROM clause.static InsertStatement
Statements.insertInto
(Table<?> table) Creates an INSERT statement with specified INTO clause.InsertBatchStatement
<? extends T> Creates an INSERT (batch) statement with specified INTO clause.Creates an INSERT statement with specified INTO clause.Creates a TRUNCATE statement with the specified TABLE clause.static TruncateStatement
Statements.truncateTable
(Table<?> table) Creates a TRUNCATE statement with specified TABLE clause.static UpdateStatement
Creates an UPDATE statement for specified table.