const int CONTACT_NO_COLS = 12; // 0-11
// Global structure for holding ODBC connection information
-struct DbStuff DbConnectInf;
+struct wxDbConnectInf DbConnectInf;
enum Language {langENGLISH, langFRENCH, langGERMAN, langSPANISH, langOTHER};
class CqueryDlg : public wxDialog
{
private:
- CcolInf *colInf; // Column inf. returned by db->GetColumns()
+ wxColInf *colInf; // Column inf. returned by db->GetColumns()
wxTable *dbTable;
char *masterTableName;
char *pWhere; // A pointer to the storage for the resulting where clause
wxTextCtrl *pFocusTxt;
CqueryDlg(wxWindow *parent, wxDB *pDb, char *tblName[], char *pWhereArg);
+ ~CqueryDlg();
void OnButton( wxCommandEvent &event );
void OnCommand(wxWindow& win, wxCommandEvent& event);