[Quantproject-developers] QuantDownloader/Downloader/TickerSelectors TickerGroupsViewer.cs, 1.9, 1.
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2006-07-02 19:59:07
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/TickerSelectors In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv15527/Downloader/TickerSelectors Modified Files: TickerGroupsViewer.cs Log Message: oleDbConnection is closed only if it references an object. Index: TickerGroupsViewer.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/TickerSelectors/TickerGroupsViewer.cs,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** TickerGroupsViewer.cs 27 Aug 2005 19:21:35 -0000 1.9 --- TickerGroupsViewer.cs 2 Jul 2006 19:59:01 -0000 1.10 *************** *** 465,469 **** { Cursor.Current = Cursors.Default; ! this.oleDbConnection.Close(); } } --- 465,470 ---- { Cursor.Current = Cursors.Default; ! if(this.oleDbConnection != null) ! this.oleDbConnection.Close(); } } |