Package | Description |
---|---|
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.expression |
Expressions include mathematical operations, conditions, simple values, and functions.
|
org.h2.result |
Implementation of row and internal result sets.
|
org.h2.server |
A small FTP server.
|
org.h2.value |
Data type and value implementations.
|
Constructor and Description |
---|
CommandRemote(SessionRemote session,
ArrayList<Transfer> transferList,
String sql,
int fetchSize) |
Modifier and Type | Method and Description |
---|---|
void |
SessionRemote.done(Transfer transfer)
Called to flush the output after data has been sent to the server and
just before receiving data.
|
Modifier and Type | Method and Description |
---|---|
void |
ParameterRemote.readMetaData(Transfer transfer)
Write the parameter meta data from the transfer object.
|
static void |
ParameterRemote.writeMetaData(Transfer transfer,
ParameterInterface p)
Write the parameter meta data to the transfer object.
|
Modifier and Type | Method and Description |
---|---|
static void |
ResultColumn.writeColumn(Transfer out,
ResultInterface result,
int i)
Write a result column to the given output.
|
Constructor and Description |
---|
ResultRemote(SessionRemote session,
Transfer transfer,
int id,
int columnCount,
int fetchSize) |
Modifier and Type | Field and Description |
---|---|
protected Transfer |
TcpServerThread.transfer |
Modifier and Type | Method and Description |
---|---|
Transfer |
Transfer.openNewConnection()
Open a new new connection to the same address and port as this one.
|
Transfer |
Transfer.writeBoolean(boolean x)
Write a boolean.
|
Transfer |
Transfer.writeBytes(byte[] data)
Write a byte array.
|
Transfer |
Transfer.writeBytes(byte[] buff,
int off,
int len)
Write a number of bytes.
|
Transfer |
Transfer.writeInt(int x)
Write an int.
|
Transfer |
Transfer.writeLong(long x)
Write a long.
|
Transfer |
Transfer.writeString(String s)
Write a string.
|
Copyright © 2016 JBoss by Red Hat. All Rights Reserved.