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 DbSchemaSentence. lastMatchedSchemaMethods in org.h2.bnf that return DbSchema Modifier and Type Method Description DbSchemaSentence. 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 voidSentence. 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 DbSchemaDbContents. defaultSchemaprivate DbSchemaDbProcedure. schemaprivate DbSchemaDbTableOrView. schemaThe schema this table belongs to.private DbSchema[]DbContents. schemasMethods in org.h2.bnf.context that return DbSchema Modifier and Type Method Description DbSchemaDbContents. getDefaultSchema()DbSchemaDbProcedure. getSchema()DbSchemaDbTableOrView. 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 intWebApp. 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 intWebApp. addTablesAndViews(DbSchema schema, boolean mainSchema, java.lang.StringBuilder builder, int treeIndex)
-