State (Dataset property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{Template:Dataset:State subtitle}}
{{Template:Dataset:State subtitle}}


This <var>[[DatasetState enumeration]]</var> read/only property indicates the current state
of the dataset.
==Syntax==
==Syntax==
{{Template:Dataset:State syntax}}
{{Template:Dataset:State syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%recfm</th>
<tr><th>%datasetState</th>
<td>A <var>DatasetState</var> enumeration variable to receive the value that indicates
<td>A <var>[[DatasetState enumeration|DatasetState]]</var> enumeration variable to receive the value that indicates the current state of the <var class="term>dataset</var> object.
the current state of the dataset.
</td></tr>
</td></tr>
<tr><th>%dataset</th>
<tr><th>dataset</th>
<td>A reference to an instance of a <var>Dataset</var> object.
<td>A reference to an instance of a <var>Dataset</var> object.
   
   
Line 22: Line 19:
<li>The initial state of all datasets is <var>Closed</var>.
<li>The initial state of all datasets is <var>Closed</var>.
</ul>
</ul>
==Example==
For a simple example, see [[Dataset class#Dataset example|"Dataset example"]].
==See also==
==See also==
{{Template:Dataset:State footer}}
{{Template:Dataset:State footer}}

Latest revision as of 00:21, 15 November 2012

The current state of this dataset (Dataset class)


Syntax

%datasetState = dataset:State

Syntax terms

%datasetState A DatasetState enumeration variable to receive the value that indicates the current state of the dataset object.
dataset A reference to an instance of a Dataset object.

Usage notes

  • The most common use for the State property is to check if end of file has been reached for an input dataset (State=AfterEnd), or to check if an output file has filled (State=Full).
  • The initial state of all datasets is Closed.

Example

For a simple example, see "Dataset example".

See also