Package | Description |
---|---|
org.h2.command.ddl |
Contains DDL (data definition language) and related SQL statements.
|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
AlterUser.setUser(User user) |
Modifier and Type | Method and Description |
---|---|
User |
Database.findUser(String name)
Get the user if it exists, or null if not.
|
User |
Session.getUser() |
User |
Database.getUser(String name)
Get user with the given name.
|
Modifier and Type | Method and Description |
---|---|
ArrayList<User> |
Database.getAllUsers() |
Modifier and Type | Method and Description |
---|---|
void |
Database.setMasterUser(User user) |
Constructor and Description |
---|
Session(Database database,
User user,
int id) |
Modifier and Type | Method and Description |
---|---|
User |
Schema.getOwner()
Get the owner of this schema.
|
Constructor and Description |
---|
Schema(Database database,
int id,
String schemaName,
User owner,
boolean system)
Create a new schema object.
|
Modifier and Type | Method and Description |
---|---|
User |
TableView.getOwner() |
Modifier and Type | Method and Description |
---|---|
static TableView |
TableView.createTempView(Session session,
User owner,
String name,
Query query,
Query topQuery)
Create a temporary view out of the given query.
|
Copyright © 2017 JBoss by Red Hat. All rights reserved.