Count (Recordset function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Created page with "<span class="pageSubtitle"><section begin=dpl_desc/><section end=dpl_desc/></span> Count property <p> <var>Count</var> is a member of the <var>[[Re...")
 
mNo edit summary
Line 1: Line 1:
<span class="pageSubtitle"><section begin=dpl_desc/><section end=dpl_desc/></span>
<span class="pageSubtitle"><section begin=dpl_desc/><section end=dpl_desc/></span>
[[Category:Recordset methods|Count property]]
[[Category:Recordset methods|Count function]]
<p>
<p>
<var>Count</var> is a member of the <var>[[Recordset class|Recordset]]</var> class.
<var>Count</var> is a member of the <var>[[Recordset class|Recordset]]</var> class.

Revision as of 19:39, 12 April 2011

<section begin=dpl_desc/><section end=dpl_desc/>

Count is a member of the Recordset class.

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

Syntax

%cnt = %recSet: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".