Module eclipselink
Annotation Type PLSQLParameter
-
@Target({}) @Retention(RUNTIME) public @interface PLSQLParameter
A PLSQLParameter annotation is used within a NamedPLSQLStoredProcedureQuery or PLSQLRecord annotation.- See Also:
NamedPLSQLStoredProcedureQuery,PLSQLRecord- Author:
- James Sutherland
- Since:
- EclipseLink 2.3
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description StringdatabaseType(Optional) The database data-type for the paramter.Directiondirection(Optional) The direction of the stored procedure parameter.intlength(Optional) The max length of the field value.booleanoptional(Optional) Define if the parameter is required, or optional and defaulted by the procedure.intprecision(Optional) If a numeric, the max precision value.StringqueryParameter(Optional) The query parameter name.intscale(Optional) If a numeric, the max scale value.
-
-
-
Element Detail
-
name
String name
(Required) Stored procedure parameter name.
-
-
-
direction
Direction direction
(Optional) The direction of the stored procedure parameter.- Default:
- org.eclipse.persistence.annotations.Direction.IN
-
-
-
queryParameter
String queryParameter
(Optional) The query parameter name.- Default:
- ""
-
-
-
databaseType
String databaseType
(Optional) The database data-type for the paramter. This either one of the type constants defined in OraclePLSQLTypes, or JDBCTypes, or a custom record or table type name.- See Also:
PLSQLRecord,OraclePLSQLTypes,JDBCTypes
- Default:
- "VARCHAR_TYPE"
-
-