Count (Recordset function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
Line 1: Line 1:
<span class="pageSubtitle"><section begin=dpl_desc/><section end=dpl_desc/></span>
{{Template:Recordset:Count subtitle}}
[[Category:Recordset methods|Count function]]
<p>
<var>Count</var> is a member of the <var>[[Recordset class|Recordset]]</var> class.
</p>


This function calculates the
This function calculates the
number of records in the <var>Recordset</var> object.
number of records in the <var>Recordset</var> object.
==Syntax==
==Syntax==
<p class="syntax">%cnt = %recSet:Count
{{Template:Recordset:Count syntax}}
</p>
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
Line 21: Line 16:


For a simple example, see <var>[[Copy and DeepCopy (Recordset functions)#Examples|"Examples"]]</var>.
For a simple example, see <var>[[Copy and DeepCopy (Recordset functions)#Examples|"Examples"]]</var>.
==See also==
{{Template:Recordset:Count footer}}

Revision as of 23:59, 14 April 2011

Calculate number of records in Recordset (Recordset class)


This function calculates the number of records in the Recordset object.

Syntax

%number = recordset:Count

Syntax terms

%cnt A numeric variable to contain the returned value of Count.
%recSet A non-null Recordset object variable.

For more information about using Count, see "Using Recordset objects".

For a simple example, see "Examples".

See also