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. synonyms
Methods in org.h2.schema that return TableSynonym Modifier and Type Method Description TableSynonym
Schema. createSynonym(CreateSynonymData data)
Add a table synonym to the schema.TableSynonym
Schema. 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. synonyms
Methods in org.h2.table with parameters of type TableSynonym Modifier and Type Method Description void
Table. addSynonym(TableSynonym synonym)
Add a synonym to this table.void
Table. removeSynonym(TableSynonym synonym)
Remove the given view from the list.
-