Open (Dataset function): Difference between revisions
Jump to navigation
Jump to search
m (Created page with "==Open (Dataset function)== This function opens the dataset associated with a <var>Dataset</var> object. ==Open syntax== <p class="pre"> [%returnCode =] %dataset:open </p> ===Syn...") |
mNo edit summary |
||
Line 1: | Line 1: | ||
This function opens the dataset associated with a <var>Dataset</var> object. | This function opens the dataset associated with a <var>Dataset</var> object. | ||
==Open syntax== | ==Open syntax== |
Revision as of 16:54, 20 May 2011
This function opens the dataset associated with a Dataset object.
Open syntax
[%returnCode =] %dataset:open
Syntax terms
%returnCode | A variable to receive the return code from the Open method, indicating
whether or not the open succeeded. Possible return codes are:
|
---|---|
%dataset | A variable containing a reference to a Dataset object for which the
underlying dataset is to be opened. |
Usage Notes
- An Open can modify the BlockSize, RecordLength, RecordFormat, or NumberOfBuffers properties. This is especially likely for input datasets where the dataset attributes from the DSCB (or CMS or VSE equivalents) will tend to override attributes set explicitly before the open.
- An open of a dataset or stream usually places an exclusive lock on the dataset or stream until it is closed. This means no other thread can access the dataset while it is opened.