@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface PLSQLTable
NamedPLSQLStoredProcedureQuery
Modifier and Type | Required Element and Description |
---|---|
java.lang.String |
compatibleType
(Required) The name of the database VARRAY type that mirrors the table's structure.
|
java.lang.String |
name
(Required) The name of the record type in the database.
|
Modifier and Type | Optional Element and Description |
---|---|
boolean |
isNestedTable
(Optional) Indicates a non-associative (nested) table.
|
java.lang.Class |
javaType
(Optional) The Java Collection class to map the varray to.
|
java.lang.String |
nestedType
(Required) The name of the database OBJECT TYPE or VARRAY type that mirrors the record's structure.
|
public abstract java.lang.String name
public abstract java.lang.String compatibleType
public abstract java.lang.String nestedType
public abstract java.lang.Class javaType
public abstract boolean isNestedTable