Uses of Class
de.jaggl.sqlbuilder.schema.Table
-
-
Uses of Table in de.jaggl.sqlbuilder.columns
Fields in de.jaggl.sqlbuilder.columns declared as Table Modifier and Type Field Description protected TableColumn. tableprotected TableColumnBuilder. table -
Uses of Table in de.jaggl.sqlbuilder.columns.datetime
Constructors in de.jaggl.sqlbuilder.columns.datetime with parameters of type Table Constructor Description DateColumn(Table table, String name, String alias, ColumnDefinition columnDefinition)DateColumnBuilder(Table table, String name)DateTimeColumn(Table table, String name, String alias, ColumnDefinition columnDefinition)DateTimeColumnBuilder(Table table, String name) -
Uses of Table in de.jaggl.sqlbuilder.columns.number
Constructors in de.jaggl.sqlbuilder.columns.number with parameters of type Table Constructor Description NumberColumn(Table table, String name, String alias, ColumnDefinition columnDefinition, int sqlType)NumberColumnBuilder(Table table, String name) -
Uses of Table in de.jaggl.sqlbuilder.columns.number.doubletype
Constructors in de.jaggl.sqlbuilder.columns.number.doubletype with parameters of type Table Constructor Description DecimalColumn(Table table, String name, String alias, ColumnDefinition columnDefinition)DecimalColumnBuilder(Table table, String name)DoubleColumn(Table table, String name, String alias, ColumnDefinition columnDefinition)DoubleColumnBuilder(Table table, String name)DoubleTypeColumn(Table table, String name, String alias, ColumnDefinition columnDefinition, int sqlType)DoubleTypeColumnBuilder(Table table, String name)FloatColumn(Table table, String name, String alias, ColumnDefinition columnDefinition)FloatColumnBuilder(Table table, String name) -
Uses of Table in de.jaggl.sqlbuilder.columns.number.integer
Constructors in de.jaggl.sqlbuilder.columns.number.integer with parameters of type Table Constructor Description BigIntColumn(Table table, String name, String alias, ColumnDefinition columnDefinition)BigIntColumnBuilder(Table table, String name)IntColumn(Table table, String name, String alias, ColumnDefinition columnDefinition)IntColumnBuilder(Table table, String name)IntegerColumn(Table table, String name, String alias, ColumnDefinition columnDefinition, int sqlType)IntegerColumnBuilder(Table table, String name)MediumIntColumn(Table table, String name, String alias, ColumnDefinition columnDefinition)MediumIntColumnBuilder(Table table, String name)SmallIntColumn(Table table, String name, String alias, ColumnDefinition columnDefinition)SmallIntColumnBuilder(Table table, String name)TinyIntColumn(Table table, String name, String alias, ColumnDefinition columnDefinition)TinyIntColumnBuilder(Table table, String name) -
Uses of Table in de.jaggl.sqlbuilder.columns.string
Constructors in de.jaggl.sqlbuilder.columns.string with parameters of type Table Constructor Description CharColumnBuilder(Table table, String name)StringColumn(Table table, String name, String alias, ColumnDefinition columnDefinition, int sqlType)StringColumnBuilder(Table table, String name)TextColumnBuilder(Table table, String name)VarCharColumnBuilder(Table table, String name) -
Uses of Table in de.jaggl.sqlbuilder.queries
Methods in de.jaggl.sqlbuilder.queries with parameters of type Table Modifier and Type Method Description static CreateTableQueries. createTable(Table table)Creates aCreateTablefor the givenTablestatic DeleteQueries. deleteFrom(Table table)DeleteDelete. from(Table deleteTable)static InsertQueries. insertInto(Table table)InsertInsert. into(Table insertTable)static UpdateQueries. update(Table table) -
Uses of Table in de.jaggl.sqlbuilder.schema
Methods in de.jaggl.sqlbuilder.schema that return Table Modifier and Type Method Description TableTable. as(String alias)Creates a clone from the currentTablebut with the given aliasstatic TableTable. create(String name)Creates aTablewith the given nameTableSchema. table(String tableName)Methods in de.jaggl.sqlbuilder.schema with parameters of type Table Modifier and Type Method Description static voidTableBuilderUtil. addColumnToTable(Column column, Table table)
-