Replaced an old ifndef FWD_ONLY_CURSORS with the new wxODBC_FWD_ONLY_CURSORS setup.h define
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4432 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -157,7 +157,7 @@ public:
|
|||||||
bool QueryOnKeyFields(bool forUpdate = FALSE, bool distinct = FALSE);
|
bool QueryOnKeyFields(bool forUpdate = FALSE, bool distinct = FALSE);
|
||||||
bool GetNext(void) { return(getRec(SQL_FETCH_NEXT)); }
|
bool GetNext(void) { return(getRec(SQL_FETCH_NEXT)); }
|
||||||
bool operator++(int) { return(getRec(SQL_FETCH_NEXT)); }
|
bool operator++(int) { return(getRec(SQL_FETCH_NEXT)); }
|
||||||
#ifndef FWD_ONLY_CURSORS
|
#if !wxODBC_FWD_ONLY_CURSORS
|
||||||
bool GetPrev(void) { return(getRec(SQL_FETCH_PRIOR)); }
|
bool GetPrev(void) { return(getRec(SQL_FETCH_PRIOR)); }
|
||||||
bool operator--(int) { return(getRec(SQL_FETCH_PRIOR)); }
|
bool operator--(int) { return(getRec(SQL_FETCH_PRIOR)); }
|
||||||
bool GetFirst(void) { return(getRec(SQL_FETCH_FIRST)); }
|
bool GetFirst(void) { return(getRec(SQL_FETCH_FIRST)); }
|
||||||
|
Reference in New Issue
Block a user