Package | Description |
---|---|
org.apache.arrow.flight.sql |
Modifier and Type | Method and Description |
---|---|
FlightSqlClient.Transaction |
FlightSqlClient.beginTransaction(CallOption... options)
Begin a transaction.
|
Modifier and Type | Method and Description |
---|---|
FlightSqlClient.Savepoint |
FlightSqlClient.beginSavepoint(FlightSqlClient.Transaction transaction,
String name,
CallOption... options)
Create a savepoint within a transaction.
|
void |
FlightSqlClient.commit(FlightSqlClient.Transaction transaction,
CallOption... options)
Commit a transaction.
|
FlightInfo |
FlightSqlClient.execute(String query,
FlightSqlClient.Transaction transaction,
CallOption... options)
Execute a query on the server.
|
FlightInfo |
FlightSqlClient.executeSubstrait(FlightSqlClient.SubstraitPlan plan,
FlightSqlClient.Transaction transaction,
CallOption... options)
Execute a Substrait plan on the server.
|
long |
FlightSqlClient.executeSubstraitUpdate(FlightSqlClient.SubstraitPlan plan,
FlightSqlClient.Transaction transaction,
CallOption... options)
Execute an update query on the server.
|
long |
FlightSqlClient.executeUpdate(String query,
FlightSqlClient.Transaction transaction,
CallOption... options)
Execute an update query on the server.
|
SchemaResult |
FlightSqlClient.getExecuteSchema(String query,
FlightSqlClient.Transaction transaction,
CallOption... options)
Get the schema of the result set of a query.
|
SchemaResult |
FlightSqlClient.getExecuteSubstraitSchema(FlightSqlClient.SubstraitPlan plan,
FlightSqlClient.Transaction transaction,
CallOption... options)
Get the schema of the result set of a Substrait plan.
|
FlightSqlClient.PreparedStatement |
FlightSqlClient.prepare(FlightSqlClient.SubstraitPlan plan,
FlightSqlClient.Transaction transaction,
CallOption... options)
Create a prepared statement for a Substrait plan on the server.
|
FlightSqlClient.PreparedStatement |
FlightSqlClient.prepare(String query,
FlightSqlClient.Transaction transaction,
CallOption... options)
Create a prepared statement for a SQL query on the server.
|
void |
FlightSqlClient.rollback(FlightSqlClient.Transaction transaction,
CallOption... options)
Rollback a transaction.
|
Copyright © 2023 The Apache Software Foundation. All rights reserved.