Modifier and Type | Method and Description |
---|---|
DB2Connection |
DB2Connection.prepare(String sql,
Handler<AsyncResult<PreparedStatement>> handler) |
Modifier and Type | Method and Description |
---|---|
MSSQLConnection |
MSSQLConnection.prepare(String s,
Handler<AsyncResult<PreparedStatement>> handler)
Create a prepared statement using the given
sql string. |
Modifier and Type | Method and Description |
---|---|
MySQLConnection |
MySQLConnection.prepare(String sql,
Handler<AsyncResult<PreparedStatement>> handler)
Create a prepared statement using the given
sql string. |
Modifier and Type | Method and Description |
---|---|
PgConnection |
PgConnection.prepare(String sql,
Handler<AsyncResult<PreparedStatement>> handler)
Create a prepared statement using the given
sql string. |
Modifier and Type | Method and Description |
---|---|
PreparedStatement |
PreparedStatement.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static PreparedStatement |
PreparedStatement.newInstance(PreparedStatement arg) |
Constructor and Description |
---|
PreparedStatement(PreparedStatement delegate) |
Modifier and Type | Method and Description |
---|---|
PreparedStatement |
PreparedStatement.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static PreparedStatement |
PreparedStatement.newInstance(PreparedStatement arg) |
Constructor and Description |
---|
PreparedStatement(PreparedStatement delegate) |
Modifier and Type | Method and Description |
---|---|
PreparedStatement |
PreparedStatement.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static PreparedStatement |
PreparedStatement.newInstance(PreparedStatement arg) |
Constructor and Description |
---|
PreparedStatement(PreparedStatement delegate) |
Modifier and Type | Method and Description |
---|---|
Future<PreparedStatement> |
SqlConnection.prepare(String sql)
Like
SqlConnection.prepare(String, Handler) but returns a Future of the asynchronous result |
Future<PreparedStatement> |
SqlConnection.prepare(String sql,
PrepareOptions options)
Like
SqlConnection.prepare(String, Handler) but returns a Future of the asynchronous result |
Modifier and Type | Method and Description |
---|---|
SqlConnection |
SqlConnection.prepare(String sql,
Handler<AsyncResult<PreparedStatement>> handler)
Create a prepared statement using the given
sql string. |
SqlConnection |
SqlConnection.prepare(String sql,
PrepareOptions options,
Handler<AsyncResult<PreparedStatement>> handler)
Create a prepared statement using the given
sql string. |
Copyright © 2023 Eclipse. All rights reserved.