| 程序包 | 说明 |
|---|---|
| org.h2.command |
This package contains the parser and the base classes for prepared SQL statements.
|
| org.h2.engine |
Contains high level classes of the database and classes that don't fit in another sub-package.
|
| org.h2.jdbc |
Implementation of the JDBC API (package java.sql).
|
| 限定符和类型 | 类和说明 |
|---|---|
class |
Command
Represents a SQL statement.
|
class |
CommandContainer
Represents a single SQL statements.
|
class |
CommandRemote
Represents the client-side part of a SQL statement.
|
| 限定符和类型 | 方法和说明 |
|---|---|
abstract CommandInterface |
Session.prepareCommand(String sql,
int fetchSize)
Parse a command and prepare it for execution.
|
CommandInterface |
SessionLocal.prepareCommand(String sql,
int fetchSize) |
CommandInterface |
SessionRemote.prepareCommand(String sql,
int fetchSize) |
CommandInterface |
SessionRemote.prepareCommand(String sql,
int fetchSize) |
CommandInterface |
SessionLocal.prepareCommand(String sql,
int fetchSize) |
abstract CommandInterface |
Session.prepareCommand(String sql,
int fetchSize)
Parse a command and prepare it for execution.
|
| 限定符和类型 | 字段和说明 |
|---|---|
protected CommandInterface |
JdbcPreparedStatement.command |
protected CommandInterface |
JdbcPreparedStatement.command |
| 构造器和说明 |
|---|
JdbcResultSet(JdbcConnection conn,
JdbcStatement stat,
CommandInterface command,
ResultInterface result,
int id,
boolean scrollable,
boolean updatable,
boolean triggerUpdatable) |
JdbcResultSet(JdbcConnection conn,
JdbcStatement stat,
CommandInterface command,
ResultInterface result,
int id,
boolean scrollable,
boolean updatable,
boolean triggerUpdatable) |
Copyright © 2022. All rights reserved.