Class TableQuery
java.lang.Object
com.github.darksoulq.abyssallib.common.database.relational.AbstractTableQuery<TableQuery>
com.github.darksoulq.abyssallib.common.database.relational.mariadb.TableQuery
A MariaDB-specific query handler for individual table operations.
-
Constructor Summary
ConstructorsConstructorDescriptionTableQuery(Database database, String table) Constructs a TableQuery for MariaDB. -
Method Summary
Modifier and TypeMethodDescriptionTransitions into a batch operation for this table.Methods inherited from class com.github.darksoulq.abyssallib.common.database.relational.AbstractTableQuery
count, delete, execute, executeAsync, exists, first, insert, limit, offset, orderBy, replace, select, select, selectAsync, selectAsync, update, value, where
-
Constructor Details
-
TableQuery
Constructs a TableQuery for MariaDB.- Parameters:
database- The database instance.table- The table name.
-
-
Method Details
-
batch
Transitions into a batch operation for this table.- Parameters:
columns- The columns for the batch.- Returns:
- A
BatchQueryinstance.
-