| Package | Description |
|---|---|
| org.sqlproc.engine |
The public part of the SQL Processor implementation.
|
| org.sqlproc.engine.impl |
The private part of the SQL Processor implementation.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
SqlProcedureEngine.callFunction(SqlSession session,
Object dynamicInputValues,
SqlControl sqlControl)
Runs the stored function based on the META SQL statement.
|
<E> List<E> |
SqlProcedureEngine.callQuery(SqlSession session,
Class<E> resultClass,
Object dynamicInputValues,
SqlControl sqlControl)
Runs the stored procedure based on the META SQL statement to obtain a list of database rows.
|
int |
SqlProcedureEngine.callUpdate(SqlSession session,
Object dynamicInputValues,
SqlControl sqlControl)
Runs the stored procedure based on the META SQL statement.
|
int |
SqlCrudEngine.delete(SqlSession session,
Object dynamicInputValues,
SqlControl sqlControl)
Runs the META SQL delete statement to delete a database row.
|
<E> E |
SqlCrudEngine.get(SqlSession session,
Class<E> resultClass,
Object dynamicInputValues,
SqlControl sqlControl)
Runs the META SQL query to obtain a unique database row.
|
(package private) Map<String,Object> |
SqlEngine.getFeatures(SqlControl sqlControl)
The helper to prevent the NPE
|
(package private) int |
SqlEngine.getFirstResult(SqlControl sqlControl)
The helper to prevent the NPE
|
(package private) int |
SqlEngine.getMaxResults(SqlControl sqlControl)
The helper to prevent the NPE
|
(package private) int |
SqlEngine.getMaxTimeout(SqlControl sqlControl)
The helper to prevent the NPE
|
(package private) Map<String,Class<?>> |
SqlEngine.getMoreResultClasses(SqlControl sqlControl)
The helper to prevent the NPE
|
(package private) SqlOrder |
SqlEngine.getOrder(SqlControl sqlControl)
The helper to prevent the NPE
|
String |
SqlQueryEngine.getSql(Object dynamicInputValues,
SqlControl sqlControl)
Because the SQL Processor is Data Driven Query engine, every input parameters can produce in fact different SQL
query command.
|
String |
SqlProcedureEngine.getSql(Object dynamicInputValues,
SqlControl sqlControl,
SqlMetaStatement.Type statementType)
Because SQL Processor is Data Driven Query engine, every input parameters can produce in fact different SQL
statement command.
|
String |
SqlCrudEngine.getSql(Object dynamicInputValues,
SqlControl sqlControl,
SqlMetaStatement.Type statementType)
Because SQL Processor is Data Driven Query engine, every input parameters can produce in fact different SQL
statement command.
|
(package private) Object |
SqlEngine.getStaticInputValues(SqlControl sqlControl)
The helper to prevent the NPE
|
int |
SqlCrudEngine.insert(SqlSession session,
Object dynamicInputValues,
SqlControl sqlControl)
Runs the META SQL insert statement to persist a database row.
|
<E> List<E> |
SqlQueryEngine.query(SqlSession session,
Class<E> resultClass,
Object dynamicInputValues,
SqlControl sqlControl)
Runs the META SQL query to obtain a list of database rows.
|
int |
SqlQueryEngine.queryCount(SqlSession session,
Object dynamicInputValues,
SqlControl sqlControl)
Runs META SQL query to obtain the number of database rows.
|
int |
SqlCrudEngine.update(SqlSession session,
Object dynamicInputValues,
SqlControl sqlControl)
Runs the META SQL update statement to persist a database row.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SqlStandardControl
The compound parameters controlling the META SQL execution.
|
| Constructor and Description |
|---|
SqlStandardControl(SqlControl sqlControl)
Merging constructor.
|
Copyright © 2014. All Rights Reserved.