Exemple #1
0
        /// <summary>
        /// Go to the last row in the dataset.
        /// </summary>
        /// <returns>False if current position doesn't change</returns>
        public bool Last()
        {
            if (queryID <= 0)
            {
                return(false);
            }

            //Call SQL API function to move to the last position
            VistaDBAPI.ivsql_Last(queryID);

            return(true);
        }