Difference between revisions of "SQLCNT"

From Lianjapedia
Jump to: navigation, search
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Return the number of rows affected by the last SQL statement
 
Return the number of rows affected by the last SQL statement
 
  
 
==Syntax==
 
==Syntax==
 
SQLCNT
 
SQLCNT
 
  
 
==See Also==
 
==See Also==
 
[[PSEUDO COLUMNS]], [[SQL INSERT|INSERT]], [[SQL SELECT|SELECT]], [[SQL UPDATE|UPDATE]]
 
[[PSEUDO COLUMNS]], [[SQL INSERT|INSERT]], [[SQL SELECT|SELECT]], [[SQL UPDATE|UPDATE]]
 
  
 
==Description==
 
==Description==
 
SQLCNT will return the number of rows affected by the last SQL statement.  For example, after a SELECT statement, SQLCNT will contain the number of rows selected.
 
SQLCNT will return the number of rows affected by the last SQL statement.  For example, after a SELECT statement, SQLCNT will contain the number of rows selected.
 
  
 
==Example==
 
==Example==
Line 23: Line 19:
 
</code>
 
</code>
  
 
==Products==
 
Recital, Recital Server
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:SQL]]
 
[[Category:SQL]]
[[Category:Pseudo Columns]]
 

Latest revision as of 09:52, 4 February 2013

Purpose

Return the number of rows affected by the last SQL statement

Syntax

SQLCNT

See Also

PSEUDO COLUMNS, INSERT, SELECT, UPDATE

Description

SQLCNT will return the number of rows affected by the last SQL statement. For example, after a SELECT statement, SQLCNT will contain the number of rows selected.

Example

OPEN DATABASE southwind
SELECT * FROM example WHERE state = "MA"
? sqlcnt
        17