| 程序包 | 说明 |
|---|---|
| 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.
|
| 限定符和类型 | 方法和说明 |
|---|---|
void |
AlterUser.setUser(User user) |
| 限定符和类型 | 方法和说明 |
|---|---|
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.
|
| 限定符和类型 | 方法和说明 |
|---|---|
ArrayList<User> |
Database.getAllUsers() |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
Database.setMasterUser(User user) |
| 构造器和说明 |
|---|
Session(Database database,
User user,
int id) |
| 限定符和类型 | 方法和说明 |
|---|---|
User |
Schema.getOwner()
Get the owner of this schema.
|
| 构造器和说明 |
|---|
Schema(Database database,
int id,
String schemaName,
User owner,
boolean system)
Create a new schema object.
|
| 限定符和类型 | 方法和说明 |
|---|---|
User |
TableView.getOwner() |
| 限定符和类型 | 方法和说明 |
|---|---|
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. All rights reserved.