BSky.Statistics.R.UAPackageAPI.GetRowCount C# (CSharp) Method

GetRowCount() private method

private GetRowCount ( ServerDataSource dataSource ) : int
dataSource BSky.Statistics.Common.ServerDataSource
return int
        private int GetRowCount(ServerDataSource dataSource)
        {
            int rcount = 0;
            string cmd = string.Format("nrow({0})", dataSource.Name);
            object o = dispatcher.EvaluateToObject(cmd, false);
            if (o != null)
                rcount = (int)o;
            return rcount;
        }
        //get row count of each col
UAPackageAPI