[Quantproject-developers] QuantDownloader/Downloader/Validate QuotesToBeValidated.cs,1.3,1.4
Brought to you by:
glauco_1
|
From: <gla...@us...> - 2003-12-21 21:18:56
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/Validate
In directory sc8-pr-cvs1:/tmp/cvs-serv14405/Validate
Modified Files:
QuotesToBeValidated.cs
Log Message:
It now uses the
QuantProject.DataAccess.ConnectionProvider class
Index: QuotesToBeValidated.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/Validate/QuotesToBeValidated.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** QuotesToBeValidated.cs 16 Dec 2003 16:31:58 -0000 1.3
--- QuotesToBeValidated.cs 21 Dec 2003 21:18:53 -0000 1.4
***************
*** 2,5 ****
--- 2,6 ----
using System.Data;
using System.Data.OleDb;
+ using QuantProject.DataAccess;
using QuantProject.Applications.Downloader.Validate.Validators;
***************
*** 28,32 ****
this.selectStatement =
"select * from quotes where quTicker = '" + tickerIsLike + "'";
! this.oleDbDataAdapter = new OleDbDataAdapter( selectStatement , AdoNetTools.OleDbConnection );
try
{
--- 29,34 ----
this.selectStatement =
"select * from quotes where quTicker = '" + tickerIsLike + "'";
! this.oleDbDataAdapter =
! new OleDbDataAdapter( selectStatement , ConnectionProvider.OleDbConnection );
try
{
|