| Package | Description |
|---|---|
| org.apache.calcite.avatica |
Avatica JDBC framework.
|
| org.apache.calcite.avatica.remote |
JDBC driver that uses remote procedure calls.
|
| Modifier and Type | Field and Description |
|---|---|
Meta.StatementHandle |
AvaticaStatement.handle
Statement id; unique within connection.
|
| Modifier and Type | Method and Description |
|---|---|
Meta.StatementHandle |
MetaImpl.createStatement(Meta.ConnectionHandle ch) |
Meta.StatementHandle |
Meta.createStatement(Meta.ConnectionHandle ch)
Called during the creation of a statement to allocate a new handle.
|
Meta.StatementHandle |
Meta.prepare(Meta.ConnectionHandle ch,
String sql,
int maxRowCount)
Prepares a statement.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Meta.closeStatement(Meta.StatementHandle h)
Close a statement.
|
Iterable<Object> |
MetaImpl.createIterable(Meta.StatementHandle handle,
Meta.Signature signature,
List<Object> parameterValues,
Meta.Frame firstFrame) |
Iterable<Object> |
Meta.createIterable(Meta.StatementHandle handle,
Meta.Signature signature,
List<Object> parameterValues,
Meta.Frame firstFrame)
Creates an iterable for a result set.
|
Meta.Frame |
MetaImpl.fetch(Meta.StatementHandle h,
List<Object> parameterValues,
int offset,
int fetchMaxRowCount) |
Meta.Frame |
Meta.fetch(Meta.StatementHandle h,
List<Object> parameterValues,
int offset,
int fetchMaxRowCount)
Returns a frame of rows.
|
protected AvaticaStatement |
AvaticaConnection.lookupStatement(Meta.StatementHandle h)
Creates a statement wrapper around an existing handle.
|
AvaticaPreparedStatement |
AvaticaFactory.newPreparedStatement(AvaticaConnection connection,
Meta.StatementHandle h,
Meta.Signature signature,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability) |
AvaticaStatement |
AvaticaFactory.newStatement(AvaticaConnection connection,
Meta.StatementHandle h,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability) |
| Constructor and Description |
|---|
AvaticaPreparedStatement(AvaticaConnection connection,
Meta.StatementHandle h,
Meta.Signature signature,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
Creates an AvaticaPreparedStatement.
|
AvaticaStatement(AvaticaConnection connection,
Meta.StatementHandle h,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
Creates an AvaticaStatement.
|
| Modifier and Type | Field and Description |
|---|---|
Meta.StatementHandle |
Service.PrepareResponse.statement |
| Constructor and Description |
|---|
Service.PrepareResponse(Meta.StatementHandle statement) |
Copyright © 2012–2015 The Apache Software Foundation. All rights reserved.