Added a param to ::Open() to allow the programmer to specify whether opening the table should check if table exists

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9698 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
George Tasker
2001-04-10 10:43:51 +00:00
parent 04a429cb8a
commit 1454d4e659
3 changed files with 8 additions and 6 deletions

View File

@@ -205,7 +205,7 @@ public:
virtual ~wxDbTable();
bool Open(bool checkPrivileges=FALSE);
bool Open(bool checkPrivileges=FALSE, bool checkTableExists=TRUE);
bool CreateTable(bool attemptDrop=TRUE);
bool DropTable(void);
bool CreateIndex(const wxString &idxName, bool unique, int noIdxCols,
@@ -215,7 +215,7 @@ public:
// Accessors
// The member variables returned by these accessors are all
// set when the wxDbTable instance is createand cannot be
// set when the wxDbTable instance is created and cannot be
// changed, hence there is no corresponding SetXxxx function
wxDb *GetDb() { return pDb; }
const wxString &GetTableName() { return tableName; }
@@ -223,7 +223,6 @@ public:
const wxString &GetTablePath() { return tablePath; }
int GetNumberOfColumns() { return noCols; } // number of "defined" columns for this wxDbTable instance
const wxString &GetFromClause() { return from; }
const wxString &GetOrderByClause() { return orderBy; }