[Quantproject-developers] QuantDownloader/Downloader TickerDownloader.cs,1.6,1.7
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-05-26 15:42:28
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21916/Downloader Modified Files: TickerDownloader.cs Log Message: Now many features are got from the Data.DataTables namespace (they were provided by the DataAccess.Tables namespace) Index: TickerDownloader.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/TickerDownloader.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TickerDownloader.cs 22 May 2004 07:04:59 -0000 1.6 --- TickerDownloader.cs 26 May 2004 15:42:09 -0000 1.7 *************** *** 321,325 **** { bool response = false; ! Quotes tickerQuotes = new Quotes(this.p_quTicker); for(int i = 1; i< this.numberOfQuotesInDatabase; i += this.numberOfQuotesInDatabase/numberOfRepeatedChecks) { --- 321,326 ---- { bool response = false; ! QuantProject.Data.DataTables.Quotes tickerQuotes = ! new QuantProject.Data.DataTables.Quotes(this.p_quTicker); for(int i = 1; i< this.numberOfQuotesInDatabase; i += this.numberOfQuotesInDatabase/numberOfRepeatedChecks) { |