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
Subclasses of Table in io.github.torand.fastersql.modelModifier and TypeClassDescriptionclassTableModel<T extends TableModel<?>>Models a database table.Methods 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 DeleteStatementStatements.deleteFrom(Table table) Creates a DELETE statement with specified FROM clause.Creates a DELETE statement with specified FROM clause.static InsertStatementStatements.insertInto(Table table) Creates an INSERT statement with specified INTO clause.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 TruncateStatementStatements.truncateTable(Table table) Creates a TRUNCATE statement with specified TABLE clause.static UpdateStatementCreates an UPDATE statement for specified table.