Uses of Class
org.h2.bnf.context.DbSchema
-
Packages that use DbSchema Package Description org.h2.bnf The implementation of the BNF (Backus-Naur form) parser and tool.org.h2.bnf.context Classes that provide context for the BNF tool, in order to provide BNF-based auto-complete.org.h2.server.web The H2 Console tool. -
-
Uses of DbSchema in org.h2.bnf
Fields in org.h2.bnf declared as DbSchema Modifier and Type Field Description private DbSchema
Sentence. lastMatchedSchema
Methods in org.h2.bnf that return DbSchema Modifier and Type Method Description DbSchema
Sentence. getLastMatchedSchema()
Get the last matched schema if the last match was a schema.Methods in org.h2.bnf with parameters of type DbSchema Modifier and Type Method Description void
Sentence. setLastMatchedSchema(DbSchema schema)
Set the last matched schema if the last match was a schema, or null if it was not. -
Uses of DbSchema in org.h2.bnf.context
Fields in org.h2.bnf.context declared as DbSchema Modifier and Type Field Description private DbSchema
DbContents. defaultSchema
private DbSchema
DbProcedure. schema
private DbSchema
DbTableOrView. schema
The schema this table belongs to.private DbSchema[]
DbContents. schemas
Methods in org.h2.bnf.context that return DbSchema Modifier and Type Method Description DbSchema
DbContents. getDefaultSchema()
DbSchema
DbProcedure. getSchema()
DbSchema
DbTableOrView. getSchema()
DbSchema[]
DbContents. getSchemas()
Constructors in org.h2.bnf.context with parameters of type DbSchema Constructor Description DbProcedure(DbSchema schema, java.sql.ResultSet rs)
DbTableOrView(DbSchema schema, java.sql.ResultSet rs)
-
Uses of DbSchema in org.h2.server.web
Methods in org.h2.server.web with parameters of type DbSchema Modifier and Type Method Description private static int
WebApp. addTableOrView(DbSchema schema, boolean mainSchema, java.lang.StringBuilder builder, int treeIndex, java.sql.DatabaseMetaData meta, boolean showColumns, java.lang.String indentation, boolean isOracle, boolean notManyTables, DbTableOrView table, boolean isView, java.sql.PreparedStatement prep, java.lang.String indentNode)
private int
WebApp. addTablesAndViews(DbSchema schema, boolean mainSchema, java.lang.StringBuilder builder, int treeIndex)
-