@Target(value={}) @Retention(value=RUNTIME) public @interface PLSQLParameter
NamedPLSQLStoredProcedureQuery,
PLSQLRecord| Modifier and Type | Required Element and Description |
|---|---|
String |
name
(Required) Stored procedure parameter name.
|
| Modifier and Type | Optional Element and Description |
|---|---|
String |
databaseType
(Optional) The database data-type for the paramter.
|
Direction |
direction
(Optional) The direction of the stored procedure parameter.
|
int |
length
(Optional) The max length of the field value.
|
boolean |
optional
(Optional) Define if the parameter is required, or optional and defaulted by the procedure.
|
int |
precision
(Optional) If a numeric, the max precision value.
|
String |
queryParameter
(Optional) The query parameter name.
|
int |
scale
(Optional) If a numeric, the max scale value.
|
public abstract String name
public abstract Direction direction
public abstract String queryParameter
public abstract boolean optional
public abstract String databaseType
PLSQLRecord,
OraclePLSQLTypes,
JDBCTypespublic abstract int length
public abstract int scale
public abstract int precision