Uses of Class
org.h2.table.TableLink
-
Packages that use TableLink Package Description org.h2.index Various table index implementations, as well as cursors to navigate in an index.org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants). -
-
Uses of TableLink in org.h2.index
Fields in org.h2.index declared as TableLink Modifier and Type Field Description private TableLink
LinkedIndex. link
private TableLink
LinkedCursor. tableLink
Constructors in org.h2.index with parameters of type TableLink Constructor Description LinkedCursor(TableLink tableLink, java.sql.ResultSet rs, SessionLocal session, java.lang.String sql, java.sql.PreparedStatement prep)
LinkedIndex(TableLink table, int id, IndexColumn[] columns, int uniqueColumnCount, IndexType indexType)
-
Uses of TableLink in org.h2.schema
Methods in org.h2.schema that return TableLink Modifier and Type Method Description TableLink
Schema. createTableLink(int id, java.lang.String tableName, java.lang.String driver, java.lang.String url, java.lang.String user, java.lang.String password, java.lang.String originalSchema, java.lang.String originalTable, boolean emitUpdates, boolean force)
Add a linked table to the schema.
-