[Quantproject-developers] QuantProject/b2_DataAccess DataBase.cs, 1.8, 1.9 QuoteField.cs, 1.1, 1.2
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-09-29 21:12:55
|
Update of /cvsroot/quantproject/QuantProject/b2_DataAccess In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12699 Modified Files: DataBase.cs QuoteField.cs Log Message: no message Index: QuoteField.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b2_DataAccess/QuoteField.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** QuoteField.cs 9 Jan 2005 23:33:29 -0000 1.1 --- QuoteField.cs 29 Sep 2008 21:12:37 -0000 1.2 *************** *** 3,7 **** QuoteField.cs ! Copyright (C) 2003 Glauco Siliprandi --- 3,7 ---- QuoteField.cs ! Copyright (C) 2003 Glauco Siliprandi *************** *** 19,23 **** along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! */ using System; --- 19,23 ---- along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! */ using System; *************** *** 31,40 **** { Open, ! High, ! Low, ! Close, Volume, AdjustedClose, ! AdjustedCloseToCloseRatio } } --- 31,40 ---- { Open, ! High, ! Low, ! Close, Volume, AdjustedClose, ! AdjustedCloseToCloseRatio } } Index: DataBase.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b2_DataAccess/DataBase.cs,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** DataBase.cs 15 Jan 2006 23:35:09 -0000 1.8 --- DataBase.cs 29 Sep 2008 21:12:37 -0000 1.9 *************** *** 164,168 **** } public static bool WasExchanged( string ticker , ! ExtendedDateTime extendedDateTime ) { string sqlQuery = --- 164,168 ---- } public static bool WasExchanged( string ticker , ! DateTime dateTime ) { string sqlQuery = *************** *** 170,174 **** "from quotes where (quTicker='" + ticker + "') " + "and (quDate=" + ! SQLBuilder.GetDateConstant( extendedDateTime.DateTime ) + ")"; DataTable quotes = new DataTable(); try --- 170,174 ---- "from quotes where (quTicker='" + ticker + "') " + "and (quDate=" + ! SQLBuilder.GetDateConstant( dateTime ) + ")"; DataTable quotes = new DataTable(); try |