Fixed problem where if a table had no insertable columns, construction of the insertion statemtent would fail, which then would cause unstable behavior at a later time. Now if Insert() is called and there are no insertable columns, insert will return a failure.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7446 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
George Tasker
2000-05-21 10:49:22 +00:00
parent c160361dcf
commit cf5d275eb8
2 changed files with 13 additions and 5 deletions

View File

@@ -98,6 +98,7 @@ private:
// Private member variables
UDWORD cursorType;
bool insertable;
// Private member functions
bool bindInsertParams(void);