Close (RecordsetCursor subroutine): 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> Close subroutine <p> <var>Close</var> is a member of the <...")
 
mNo edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<span class="pageSubtitle"><section begin=dpl_desc/><section end=dpl_desc/></span>
{{Template:RecordsetCursor:Close subtitle}}
[[Category:RecordsetCursor methods|Close subroutine]]
<p>
<var>Close</var> is a member of the <var>[[RecordsetCursor class|RecordsetCursor]]</var> class.
</p>
 
 
<var>Close</var> is an alternative to the system <var>[[Object variables#Discarding explicitly|Discard]]</var>
<var>Close</var> is an alternative to the system <var>[[Object variables#Discarding explicitly|Discard]]</var>
method.
method.
It is a synonym for, and entirely similar to, <var>Discard</var>, for those
It is a synonym for, and entirely similar to, <var>Discard</var>, for those
who prefer to think of &ldquo;closing&rdquo; a cursor.
who prefer to think of "closing" a cursor.
 
==Syntax==
==Syntax==
<p class="syntax">%rscursor:Close
{{Template:RecordsetCursor:Close syntax}}
</p>
 
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%rscursor</th>
<tr><th>recordsetCursor</th>
<td>An instantiated <var>RecordsetCursor</var> object.
<td>A <var>RecordsetCursor</var> object.</td></tr>
</td></tr></table>
</table>
 
==See also==
{{Template:RecordsetCursor:Close footer}}

Latest revision as of 19:15, 12 November 2012

Discard a RecordsetCursor object (RecordsetCursor class)

Close is an alternative to the system Discard method. It is a synonym for, and entirely similar to, Discard, for those who prefer to think of "closing" a cursor.

Syntax

recordsetCursor:Close

Syntax terms

recordsetCursor A RecordsetCursor object.

See also