JOB LOB

JOB large objects (LOBs) are capable to store binary data of arbitrary length. They are created by sessions.

JOB LOBs maintain a reference to a byte array which contains binary application data. The array may be set at LOB creation time calling method

    JobLOB newLOB(String name, byte[] array)
    

on a session instance. It may be retrieved calling method

    byte[] getArray()    
    

on a LOB instance.

Note : Changes to JOB LOBs are not supported.