Uses of Class
com.exasol.dbbuilder.Table
-
Packages that use Table Package Description com.exasol.dbbuilder com.exasol.dbbuilder.objectwriter -
-
Uses of Table in com.exasol.dbbuilder
Methods in com.exasol.dbbuilder that return Table Modifier and Type Method Description TableTable.Builder. build()Build a newTableinstance.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 that return types with arguments of type Table Modifier and Type Method Description List<Table>Schema. getTables()Get the tables inside this schema. -
Uses of Table in com.exasol.dbbuilder.objectwriter
Methods in com.exasol.dbbuilder.objectwriter with parameters of type Table Modifier and Type Method Description voidDatabaseObjectWriter. write(Table table)Create a table in the database.voidDatabaseObjectWriter. write(Table table, Object... values)Write data to a database table.voidImmediateDatabaseObjectWriter. write(Table table)voidImmediateDatabaseObjectWriter. write(Table table, Object... values)
-