Indicates whether there are more statements in the command buffer to be processed.
SqlMoreCmds% ( sqlconn% )
where
SUCCEED (1) or FAIL (0). SUCCEED indicates there are more results in the command buffer to be processed.
You can call SqlMoreCmds% after SqlNextRow% returns NOMOREROWS. If you know that the current statement is returning no rows, you can call SqlMoreCmds% after SqlResults% returns SUCCEED.
You can get the same information by calling SqlResults% until it returns NOMORERESULTS.
SqlCmdRow%, SqlResults%, SqlRows%, SqlRowType%