ReadRecords (Dataset function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Automatically generated page update)
 
mNo edit summary
Line 2: Line 2:


This page is [[under construction]].
This page is [[under construction]].
==Syntax==
==Syntax==
{{Template:Dataset:ReadRecords syntax}}
{{Template:Dataset:ReadRecords syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%stringlist</th><td><var>Stringlist</var> object</td></tr>
<tr><th>%stringlist</th>
<td>A <var>Stringlist</var> object variable to receive the blocks of data.</td></tr>
 
<tr><th>dataset</th>
<tr><th>dataset</th>
<td>Dataset object</td></tr>
<td>A <var>Dataset</var> object.</td></tr>
 
<tr><th><var>Max</var></th>
<tr><th><var>Max</var></th>
<td>number<br/>This argument is optional; its default value is [[??]].</td></tr>
<td>This is an optional, [[Notation conventions for methods#Named parameters|name required]], numeric argument that is the maximum
The default limit is [[??]].</td></tr>
 
<tr><th><var>Min</var></th>
<tr><th><var>Min</var></th>
<td>number<br/>This argument is optional; its default value is [[??]].</td></tr>
<td>This is an optional, name required, numeric argument that is the minimum
The default minimum value is [[??]].</td></tr>
</table>
</table>
==Usage notes==
==Usage notes==
==Examples==
==Examples==
==See also==
==See also==
{{Template:Dataset:ReadRecords footer}}
{{Template:Dataset:ReadRecords footer}}

Revision as of 23:30, 14 November 2012

Read multiple records from this dataset (Dataset class)


This page is under construction.

Syntax

%sl = dataset:ReadRecords[( [Max= number], [Min= number])]

Syntax terms

%stringlist A Stringlist object variable to receive the blocks of data.
dataset A Dataset object.
Max This is an optional, name required, numeric argument that is the maximum The default limit is ??.
Min This is an optional, name required, numeric argument that is the minimum The default minimum value is ??.

Usage notes

Examples

See also