Indicates whether the current statement can return rows.
SqlCmdRow% ( sqlconn% )
where
SUCCEED (1) or FAIL (0).
SqlCmdRow% determines whether the current command can return rows. The following types of statements can return rows:
Call SqlCmdRow% after SqlResults% returns SUCCEED. Even if SqlCmdRow% returns SUCCEED, the statement will not return rows if none have qualified. To determine whether any rows are returned, use SqlRows%.
Even if SqlCmdRow% returns FAIL, you must still process the results by calling SqlNextRow% until it returns NOMOREROWS.
SqlNextRow%, SqlResults%, SqlRows%, SqlRowType%