ALFA.MySQLDatabaseInternal.ACR_SQLFetch C# (CSharp) Method

ACR_SQLFetch() public method

This routine fetches the next rowset from the database.
public ACR_SQLFetch ( ) : bool
return bool
        public bool ACR_SQLFetch()
        {
            bool Status = DataReader.Read();

            if (Status == false)
            {
                DataReader.Dispose();
                DataReader = null;
            }

            return Status;
        }