From ac99a98ff0a859e84c2c3e668194341459cd1cd0 Mon Sep 17 00:00:00 2001 From: George Tasker Date: Mon, 8 Nov 1999 14:59:26 +0000 Subject: [PATCH] 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 --- src/common/db.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.47.2