Uses of Class
org.h2.table.TableSynonym
-
Packages that use TableSynonym Package Description org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants).org.h2.table Classes related to a table and table meta data. -
-
Uses of TableSynonym in org.h2.engine
Methods in org.h2.engine that return types with arguments of type TableSynonym Modifier and Type Method Description java.util.ArrayList<TableSynonym>Database. getAllSynonyms()Get all synonyms. -
Uses of TableSynonym in org.h2.schema
Fields in org.h2.schema with type parameters of type TableSynonym Modifier and Type Field Description private java.util.concurrent.ConcurrentHashMap<java.lang.String,TableSynonym>Schema. synonymsMethods in org.h2.schema that return TableSynonym Modifier and Type Method Description TableSynonymSchema. createSynonym(CreateSynonymData data)Add a table synonym to the schema.TableSynonymSchema. getSynonym(java.lang.String name)Try to find a synonym with this name.Methods in org.h2.schema that return types with arguments of type TableSynonym Modifier and Type Method Description java.util.Collection<TableSynonym>Schema. getAllSynonyms() -
Uses of TableSynonym in org.h2.table
Fields in org.h2.table with type parameters of type TableSynonym Modifier and Type Field Description private java.util.ArrayList<TableSynonym>Table. synonymsMethods in org.h2.table with parameters of type TableSynonym Modifier and Type Method Description voidTable. addSynonym(TableSynonym synonym)Add a synonym to this table.voidTable. removeSynonym(TableSynonym synonym)Remove the given view from the list.
-