| Package | Description |
|---|---|
| bap.core.dao | |
| bap.core.dao.procedure |
| Modifier and Type | Method and Description |
|---|---|
Result |
BaseDao.execComplexProc(java.lang.String procName,
java.lang.Integer returnValueType,
Parameter... params)
调用复杂的存储过程或者函数。
|
Result |
BaseDao.execComplexProc(java.lang.String procName,
Parameter... params)
执行没有返回值的复杂存储过程或者函数
|
| Modifier and Type | Method and Description |
|---|---|
Result |
BaseDao.execComplexProc(java.lang.String procName,
java.lang.Integer returnValueType,
java.util.List<Parameter> params)
执行复杂存储过程或者函数
|
Result |
BaseDao.execComplexProc(java.lang.String procName,
java.util.List<Parameter> params)
执行没有返回值的复杂存储过程或者函数
|
| Modifier and Type | Method and Description |
|---|---|
static Parameter |
Parameter.makeIN(int index,
java.lang.Object value)
创建一个模式为IN的存储过程参数
|
static Parameter |
Parameter.makeINOUT(int index,
int type,
java.lang.Object value)
创建一个模式为INOUT的存储过程参数
|
static Parameter |
Parameter.makeINOUT(int index,
java.lang.Object value)
创建一个模式为INOUT,参数类型为VARCHAR的存储过程参数
|
static Parameter |
Parameter.makeOUT(int index)
创建一个模式为OUT,参数类型为VARCHAR的存储过程参数
|
static Parameter |
Parameter.makeOUT(int index,
int type)
创建一个模式为OUT的存储过程参数
|