]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/db.h
#ifdefed out the joystick code, and removed the wxBitmapList addition
[wxWidgets.git] / include / wx / db.h
index 86fa70404ca19c141535ee5956d0cbba474484c3..adfbd49b113239574e2992615aca935543df9b6b 100644 (file)
@@ -54,6 +54,9 @@
 
 #include "wx/setup.h"
 
+#include "wx/defs.h"
+#include "wx/string.h"
+
 extern "C" {
 #ifdef __VISUALC__
 // If you use the wxDbCreateDataSource() function with MSW/VC6,
@@ -624,6 +627,14 @@ public:
                                  const wxChar *userID=NULL, const wxChar *schema=NULL, 
                                  const wxString &path=wxEmptyString);
 
+    // These two functions return the table name or column name in a form ready
+    // for use in SQL statements.  For example, if the datasource allows spaces
+    // in the table name or column name, the returned string will have the
+    // correct enclosing marks around the name to allow it to be properly 
+    // included in a SQL statement
+    const wxString  SQLTableName(const char *tableName);
+    const wxString  SQLColumnName(const char *colName);
+
     void         LogError(const wxString &errMsg, const wxString &SQLState = wxEmptyString) 
                         { logError(errMsg, SQLState); }
     void         SetDebugErrorMessages(bool state) { silent = !state; }