TimeSeriesLibrary.TSLibrary.FillSeriesDateArray C# (CSharp) Method

FillSeriesDateArray() public method

public FillSeriesDateArray ( int connectionNumber, String tableName, String traceTableName, int id, int nReqValues, System.DateTime dateArray, System.DateTime reqStartDate ) : void
connectionNumber int
tableName String
traceTableName String
id int
nReqValues int
dateArray System.DateTime
reqStartDate System.DateTime
return void
        public void FillSeriesDateArray(
                    int connectionNumber, String tableName, String traceTableName, int id,
                    int nReqValues, DateTime[] dateArray, DateTime reqStartDate)
        {
            // Get the connection that we'll pass along.
            SqlConnection connx = GetConnectionFromId(connectionNumber);
            // Construct new TS object with SqlConnection object and table name
            TS ts = new TS(connx, ConnxObject, tableName, traceTableName);

            ts.FillDateArray(id, nReqValues, dateArray, reqStartDate);
        }