updateClobToFile()

The lobLib.updateClobToFile() system function copies the data referenced by a CLOB variable into a specified file. If the file exists, the function first erases the content of the file; otherwise, the function creates the file.

Syntax

  lobLib.updateClobToFile(
    clobVariable CLOB inOut,
    fileName STRING in)
clobVariable
The CLOB variable. If this parameter has a null value, EGL throws a NullValueException.
fileName
The name of the file. The name is fully qualified or is relative to the directory from which the program is invoked.

Feedback