Package | Description |
---|---|
com.glyart.mystral.database |
Contains the implementations of the main functionalities of this library.
|
com.glyart.mystral.sql |
Contains interfaces used by
DataOperations and AsyncDataOperations implementations. |
Modifier and Type | Method and Description |
---|---|
<T> CompletableFuture<T> |
AsyncDatabase.execute(@NotNull PreparedStatementCreator creator,
@NotNull PreparedStatementFunction<T> callback) |
<T> T |
Database.execute(@NotNull PreparedStatementCreator creator,
@NotNull PreparedStatementFunction<T> callback) |
<T> CompletableFuture<T> |
AsyncDatabase.execute(@NotNull String sql,
@NotNull PreparedStatementFunction<T> callback) |
<T> T |
Database.execute(@NotNull String sql,
@NotNull PreparedStatementFunction<T> callback) |
Modifier and Type | Method and Description |
---|---|
<T> CompletableFuture<T> |
AsyncDataOperations.execute(@NotNull PreparedStatementCreator creator,
@NotNull PreparedStatementFunction<T> callback)
Executes a JDBC data access operation, implemented as
PreparedStatementFunction callback
working on a PreparedStatement. |
<T> T |
DataOperations.execute(@NotNull PreparedStatementCreator creator,
@NotNull PreparedStatementFunction<T> callback)
Executes a JDBC data access operation, implemented as
PreparedStatementFunction callback
working on a PreparedStatement. |
<T> CompletableFuture<T> |
AsyncDataOperations.execute(@NotNull String sql,
@NotNull PreparedStatementFunction<T> callback)
Executes a JDBC data access operation, implemented as
PreparedStatementFunction callback
working on a PreparedStatement. |
<T> T |
DataOperations.execute(@NotNull String sql,
@NotNull PreparedStatementFunction<T> callback)
Executes a JDBC data access operation, implemented as
PreparedStatementFunction callback
working on a PreparedStatement. |
Copyright © 2021. All rights reserved.