Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.0 » SQL Anywhere Server - Programming » SQL Anywhere Data Access APIs » SQL Anywhere .NET 2.0 API Reference » iAnywhere.Data.SQLAnywhere namespace (.NET 2.0) » SADataReader class

 

NextResult method

Advances the SADataReader to the next result, when reading the results of batch SQL statements.

Syntax
Visual Basic

Public Overrides Function NextResult() As Boolean
C#

public override bool NextResult();
Return value

Returns true if there are more result sets. Otherwise, it returns false.

Remarks

Used to process multiple results, which can be generated by executing batch SQL statements.

By default, the data reader is positioned on the first result.

See also