Class TableBuilder
java.lang.Object
com.github.darksoulq.abyssallib.common.database.relational.AbstractTableBuilder<TableBuilder>
com.github.darksoulq.abyssallib.common.database.relational.sql.TableBuilder
A SQLite-specific implementation of
AbstractTableBuilder.
Handles the specific auto-increment syntax used by SQLite.-
Constructor Summary
ConstructorsConstructorDescriptionTableBuilder(Connection conn, String table) Constructs a new TableBuilder for SQLite. -
Method Summary
Methods inherited from class AbstractTableBuilder
autoIncrement, check, column, defaultValue, dropIfExists, execute, foreignKey, ifNotExists, primaryKey, unique
-
Constructor Details
-
TableBuilder
Constructs a new TableBuilder for SQLite.- Parameters:
conn- The JDBCConnection.table- The name of the table to build.
-