From ee4ddd9f0bf45ff55964ea1d994f4024dea14caf Mon Sep 17 00:00:00 2001 From: "Bart A.M. Jourquin" Date: Wed, 31 May 2000 14:28:11 +0000 Subject: [PATCH] initialize insertable to TRUE in ctor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7514 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/dbtable.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/dbtable.cpp b/src/common/dbtable.cpp index 0480dfe640..9daf02fcb7 100644 --- a/src/common/dbtable.cpp +++ b/src/common/dbtable.cpp @@ -127,6 +127,7 @@ wxDbTable::wxDbTable(wxDb *pwxDb, const char *tblName, const int nCols, from = ""; // From clause selectForUpdate = FALSE; // SELECT ... FOR UPDATE; Indicates whether to include the FOR UPDATE phrase queryOnly = qryOnly; + insertable = TRUE; assert (tblName);