Uses of Class
com.exasol.dbbuilder.dialects.Table
-
Packages that use Table Package Description com.exasol.dbbuilder.dialects -
-
Uses of Table in com.exasol.dbbuilder.dialects
Fields in com.exasol.dbbuilder.dialects with type parameters of type Table Modifier and Type Field Description protected List<Table>AbstractSchema. tablesMethods in com.exasol.dbbuilder.dialects that return Table Modifier and Type Method Description TableTable.Builder. build()Build a newTableinstance.TableTable. bulkInsert(Stream<List<Object>> rows)Insert multiple rows at once.TableAbstractSchema. createTable(String name, String column1Name, String column1Type)TableAbstractSchema. createTable(String name, String column1Name, String column1Type, String column2Name, String column2Type)TableAbstractSchema. createTable(String name, String column1Name, String column1Type, String column2Name, String column2Type, String column3Name, String column3Type)TableAbstractSchema. createTable(String name, List<String> columnNames, List<String> columnTypes)TableSchema. createTable(String name, String column1Name, String column1Type)Create a table with one column.TableSchema. createTable(String name, String column1Name, String column1Type, String column2Name, String column2Type)Create a table with two columns.TableSchema. createTable(String name, String column1Name, String column1Type, String column2Name, String column2Type, String column3Name, String column3Type)Create a table with three columns.TableSchema. createTable(String name, List<String> columnNames, List<String> columnTypes)Create a table with an arbitrary number of columns.TableTable. insert(Object... values)Insert a row of values to the table.Methods in com.exasol.dbbuilder.dialects that return types with arguments of type Table Modifier and Type Method Description List<Table>AbstractSchema. getTables()List<Table>Schema. getTables()Get the tables inside this schema.Methods in com.exasol.dbbuilder.dialects with parameters of type Table Modifier and Type Method Description voidAbstractImmediateDatabaseObjectWriter. drop(Table table)voidDatabaseObjectWriter. drop(Table table)Drop a table.voidAbstractImmediateDatabaseObjectWriter. write(Table table)voidAbstractImmediateDatabaseObjectWriter. write(Table table, Stream<List<Object>> rows)voidDatabaseObjectWriter. write(Table table)Create a table in the database.voidDatabaseObjectWriter. write(Table table, Stream<List<Object>> rows)Bulk write data to a database table.
-