From: George Tasker Date: Mon, 8 Nov 1999 14:59:26 +0000 (+0000) Subject: Fixed reversed logic on wxODBC_FWD_ONLY_CURSORS X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ac99a98ff0a859e84c2c3e668194341459cd1cd0 Fixed reversed logic on wxODBC_FWD_ONLY_CURSORS git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4435 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/db.cpp b/src/common/db.cpp index c356007e1f..4f9cd1dc41 100644 --- a/src/common/db.cpp +++ b/src/common/db.cpp @@ -178,7 +178,7 @@ bool wxDB::Open(char *Dsn, char *Uid, char *AuthStr) RETCODE retcode; -#if wxODBC_FWD_ONLY_CURSORS +#if !wxODBC_FWD_ONLY_CURSORS // Specify that the ODBC cursor library be used, if needed. This must be // specified before the connection is made.