ALFA.MySQLDatabaseInternal.ACR_SQLFetch C# (CSharp) Метод

ACR_SQLFetch() публичный Метод

This routine fetches the next rowset from the database.
public ACR_SQLFetch ( ) : bool
Результат bool
        public bool ACR_SQLFetch()
        {
            bool Status = DataReader.Read();

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

            return Status;
        }