| Package | Description |
|---|---|
| com.feedzai.commons.sql.abstraction.engine |
Contains the database engine core.
|
| com.feedzai.commons.sql.abstraction.engine.impl |
Database specific implementations.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractDatabaseEngine.clearParameters(String name)
Clears the prepared statement parameters.
|
void |
DatabaseEngine.clearParameters(String name)
Clears the prepared statement parameters.
|
void |
AbstractDatabaseEngine.executePS(String name)
Executes the specified prepared statement.
|
void |
DatabaseEngine.executePS(String name)
Executes the specified prepared statement.
|
Integer |
AbstractDatabaseEngine.executePSUpdate(String name)
Executes update on the specified prepared statement.
|
Integer |
DatabaseEngine.executePSUpdate(String name)
Executes update on the specified prepared statement.
|
ResultIterator |
AbstractDatabaseEngine.getPSIterator(String name) |
ResultIterator |
DatabaseEngine.getPSIterator(String name)
Creates an iterator for the
PreparedStatement bound to the given name. |
ResultIterator |
AbstractDatabaseEngine.getPSIterator(String name,
int fetchSize) |
ResultIterator |
DatabaseEngine.getPSIterator(String name,
int fetchSize)
Creates an iterator for the
PreparedStatement bound to the given name. |
List<Map<String,ResultColumn>> |
AbstractDatabaseEngine.getPSResultSet(String name)
Gets the result set of the specified prepared statement.
|
List<Map<String,ResultColumn>> |
DatabaseEngine.getPSResultSet(String name)
Gets the result set of the specified prepared statement.
|
void |
AbstractDatabaseEngine.setParameter(String name,
int index,
Object param) |
void |
DatabaseEngine.setParameter(String name,
int index,
Object param)
Sets the parameter on the specified index.
|
void |
AbstractDatabaseEngine.setParameter(String name,
int index,
Object param,
DbColumnType paramType) |
void |
DatabaseEngine.setParameter(String name,
int index,
Object param,
DbColumnType paramType)
Sets the parameter on the specified index given its type.
|
void |
AbstractDatabaseEngine.setParameters(String name,
Object... params) |
void |
DatabaseEngine.setParameters(String name,
Object... params)
Sets the parameters on the specified prepared statement.
|
| Modifier and Type | Method and Description |
|---|---|
void |
DB2Engine.setParameter(String name,
int index,
Object param) |
void |
OracleEngine.setParameter(String name,
int index,
Object param) |
void |
PostgreSqlEngine.setParameter(String name,
int index,
Object param,
DbColumnType paramType) |
void |
DB2Engine.setParameters(String name,
Object... params) |
void |
OracleEngine.setParameters(String name,
Object... params) |
Copyright © 2021 Feedzai. All rights reserved.