Dataload()

Loads a previously saved data back into memory, returning back the CF data. The fileurl can be any URL, local, or cloud file location

Usage

OBJECT = Dataload( fileurl, compressed )
Argument Summary
fileurl fileurl - url to the serialized file, or previously opened file object (FileOpen)
compressed if the file was saved in a compressed format then it needs to be loaded with the flag set to true; defaults to false [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Dataload(
   fileurl=?, 
   compressed=?
);

Supports passing parameters as a structure using ArgumentCollection:

Dataload( ArgumentCollection={
   fileurl : ?, 
   compressed : ?
} );