Module eclipselink

Annotation Type PLSQLRecord

    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      String compatibleType
      (Required) The name of the database OBJECT TYPE that mirrors the record's structure.
      PLSQLParameter[] fields
      (Required) Defines the fields in the record type.
      String name
      (Required) The name of the record type in the database.
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      Class<?> javaType
      (Optional) The Java class to map the object-type to.
    • Element Detail

      • name

        String name
        (Required) The name of the record type in the database.
      • compatibleType

        String compatibleType
        (Required) The name of the database OBJECT TYPE that mirrors the record's structure. The record will be converted to/from this type so it can be passed through JDBC.
      • fields

        PLSQLParameter[] fields
        (Required) Defines the fields in the record type.
      • javaType

        Class<?> javaType
        (Optional) The Java class to map the object-type to. This class must be mapped using a @Struct annotation.
        Default:
        void.class