]>
Commit | Line | Data |
---|---|---|
c92b0f9a | 1 | //---------------------------------------------------------------------------------------- |
d1f47235 DS |
2 | // Name: BrowserDB.h,cpp |
3 | // Purpose: a wxDB class | |
4 | // Author: Mark Johnson | |
b5ffecfc | 5 | // Modified by: |
d1f47235 DS |
6 | // Created: 19991127.mj10777 |
7 | // Copyright: (c) Mark Johnson | |
8 | // Licence: wxWindows license | |
9 | // RCS-ID: $Id$ | |
c92b0f9a | 10 | //---------------------------------------------------------------------------------------- |
b5ffecfc | 11 | //-- 1) |
c92b0f9a MJ |
12 | //---------------------------------------------------------------------------------------- |
13 | //-- all #ifdefs that the whole Project needs. ------------------------------------------- | |
14 | //---------------------------------------------------------------------------------------- | |
b5ffecfc | 15 | #ifdef __GNUG__ |
b5ce269b BJ |
16 | #pragma implementation |
17 | #pragma interface | |
b5ffecfc | 18 | #endif |
c92b0f9a | 19 | //---------------------------------------------------------------------------------------- |
b5ffecfc GT |
20 | // For compilers that support precompilation, includes "wx/wx.h". |
21 | #include "wx/wxprec.h" | |
c92b0f9a | 22 | //---------------------------------------------------------------------------------------- |
b5ffecfc | 23 | #ifdef __BORLANDC__ |
b5ce269b | 24 | #pragma hdrstop |
b5ffecfc | 25 | #endif |
c92b0f9a | 26 | //---------------------------------------------------------------------------------------- |
b5ffecfc | 27 | #ifndef WX_PRECOMP |
b5ce269b | 28 | #include "wx/wx.h" |
b5ffecfc | 29 | #endif |
c92b0f9a | 30 | //---------------------------------------------------------------------------------------- |
b5ffecfc | 31 | #include "std.h" |
c92b0f9a | 32 | //---------------------------------------------------------------------------------------- |
b5ffecfc | 33 | // Global structure for holding ODBC connection information |
daf06bb8 | 34 | wxDbConnectInf DbConnectInf; |
645889ad | 35 | |
c20a12bd | 36 | #if !wxUSE_ODBC |
5d59e67a GT |
37 | #error Demo cannot be compiled unless setup.h has wxUSE_ODBC set to 1 |
38 | #endif | |
39 | ||
c92b0f9a | 40 | //---------------------------------------------------------------------------------------- |
d1f47235 | 41 | extern WXDLLEXPORT_DATA(wxDbList*) PtrBegDbList; /* from db.cpp, used in getting back error results from db connections */ |
645889ad | 42 | |
c92b0f9a | 43 | //---------------------------------------------------------------------------------------- |
daf06bb8 | 44 | wxChar *GetExtendedDBErrorMsg(wxChar *ErrFile, int ErrLine) |
b5ffecfc | 45 | { |
645889ad GT |
46 | static wxString msg; |
47 | wxString tStr; | |
48 | if (ErrFile || ErrLine) | |
49 | { | |
daf06bb8 | 50 | msg += _T("File: "); |
645889ad | 51 | msg += ErrFile; |
daf06bb8 JS |
52 | msg += _T(" Line: "); |
53 | tStr.Printf(_T("%d"),ErrLine); | |
645889ad | 54 | msg += tStr.GetData(); |
daf06bb8 | 55 | // msg += _T("\n"); |
645889ad | 56 | } |
daf06bb8 JS |
57 | msg.Append (_T("\nODBC errors:\n")); |
58 | // msg += _T("\n"); | |
645889ad GT |
59 | /* Scan through each database connection displaying |
60 | * any ODBC errors that have occured. */ | |
61 | wxDbList *pDbList; | |
62 | for (pDbList = PtrBegDbList; pDbList; pDbList = pDbList->PtrNext) | |
63 | { | |
64 | // Skip over any free connections | |
65 | if (pDbList->Free) | |
66 | continue; | |
67 | // Display errors for this connection | |
68 | for (int i = 0; i < DB_MAX_ERROR_HISTORY; i++) | |
69 | { | |
70 | if (pDbList->PtrDb->errorList[i]) | |
71 | { | |
72 | msg.Append(pDbList->PtrDb->errorList[i]); | |
daf06bb8 JS |
73 | if (wxStrcmp(pDbList->PtrDb->errorList[i],_T("")) != 0) |
74 | msg.Append(_T("\n")); | |
645889ad GT |
75 | } |
76 | } | |
77 | } | |
daf06bb8 JS |
78 | msg += _T("\n"); |
79 | return (wxChar*) (const wxChar*) msg; | |
b5ffecfc | 80 | } // GetExtendedDBErrorMsg |
13b59a33 | 81 | |
c92b0f9a | 82 | //---------------------------------------------------------------------------------------- |
b5ffecfc GT |
83 | BrowserDB::BrowserDB() |
84 | { | |
eacf9d88 | 85 | PointerToNULL(0); |
daf06bb8 JS |
86 | ODBCSource = _T(""); // ODBC data source name (created with ODBC Administrator under Win95/NT) |
87 | UserName = _T(""); // database username - must already exist in the data source | |
88 | Password = _T(""); // password database username | |
645889ad GT |
89 | OnFillSqlTyp(); |
90 | OnFilldbTyp(); | |
b5ffecfc | 91 | } // BrowserDB Constructor |
645889ad | 92 | |
c92b0f9a | 93 | //---------------------------------------------------------------------------------------- |
b5ffecfc GT |
94 | BrowserDB::~BrowserDB() |
95 | { | |
eacf9d88 | 96 | PointerToNULL(1); // Clean up Tables and Databases (Commit, Close and delete) |
b5ffecfc | 97 | } // BrowserDB destructor |
645889ad | 98 | |
c92b0f9a | 99 | //---------------------------------------------------------------------------------------- |
f6bcfd97 | 100 | bool BrowserDB::Initialize(int Quiet) |
b5ffecfc | 101 | { |
645889ad GT |
102 | if (!OnStartDB(Quiet)) |
103 | { | |
104 | wxLogMessage(_("\n\n-E-> BrowserDB::OnStartDB(%s) : Failed ! "),ODBCSource.c_str()); | |
105 | return FALSE; | |
106 | } | |
107 | return TRUE; | |
b5ffecfc | 108 | } // BrowserDB:Initialize |
645889ad | 109 | |
c92b0f9a | 110 | //---------------------------------------------------------------------------------------- |
f6bcfd97 | 111 | bool BrowserDB::OnStartDB(int Quiet) |
b5ffecfc | 112 | { |
645889ad GT |
113 | wxStopWatch sw; |
114 | if (!Quiet) | |
115 | wxLogMessage(_("\n-I-> BrowserDB::OnStartDB(%s) : Begin "),ODBCSource.c_str()); | |
116 | if (db_BrowserDB != NULL) | |
117 | { | |
118 | if (!Quiet) | |
eacf9d88 | 119 | wxLogMessage(_("\n-I-> BrowserDB::OnStartDB() : DB is already open.")); |
645889ad GT |
120 | return TRUE; |
121 | } | |
eacf9d88 GT |
122 | |
123 | DbConnectInf.AllocHenv(); | |
124 | ||
645889ad GT |
125 | //--------------------------------------------------------------------------------------- |
126 | // Connect to datasource | |
127 | //--------------------------------------------------------------------------------------- | |
128 | DlgUser *p_Dlg; | |
daf06bb8 | 129 | p_Dlg = new DlgUser(pDoc->p_MainFrame,pDoc,_T("")); |
d1f47235 DS |
130 | p_Dlg->s_DSN = ODBCSource; |
131 | p_Dlg->s_User = UserName; | |
645889ad GT |
132 | p_Dlg->s_Password = Password; |
133 | p_Dlg->OnInit(); | |
134 | p_Dlg->Fit(); | |
135 | ||
136 | bool OK = FALSE; | |
137 | if (p_Dlg->ShowModal() == wxID_OK) | |
138 | { | |
139 | (pDoc->p_DSN+i_Which)->Usr = p_Dlg->s_User; | |
140 | (pDoc->p_DSN+i_Which)->Pas = p_Dlg->s_Password; | |
141 | UserName = p_Dlg->s_User; | |
142 | Password = p_Dlg->s_Password; | |
143 | OK = TRUE; | |
144 | } | |
145 | delete p_Dlg; | |
146 | if (OK) | |
147 | { | |
148 | //-------------------------------------------------------------------------------------- | |
d1f47235 DS |
149 | DbConnectInf.SetDsn(ODBCSource); // ODBC data source name (created with ODBC Administrator under Win95/NT) |
150 | DbConnectInf.SetUserID(UserName); // database username - must already exist in the data source | |
151 | DbConnectInf.SetPassword(Password); // password database username | |
eacf9d88 | 152 | db_BrowserDB = wxDbGetConnection(&DbConnectInf); |
645889ad GT |
153 | // wxLogMessage(">>>%s<<<>>>%s<<<",UserName.c_str(),Password.c_str()); |
154 | if (db_BrowserDB == NULL) | |
155 | { | |
eacf9d88 GT |
156 | DbConnectInf.SetDsn(wxT("")); |
157 | DbConnectInf.SetUserID(wxT("")); | |
158 | DbConnectInf.SetPassword(wxT("")); | |
645889ad GT |
159 | if (!Quiet) |
160 | { | |
161 | wxLogMessage(_("\n-E-> BrowserDB::OnConnectDataSource() DB CONNECTION ERROR : Unable to connect to the data source.\n\nCheck the name of your data source to verify it has been correctly entered/spelled.\n\nWith some databases, the user name and password must\nbe created with full rights to the table prior to making a connection\n(using tools provided by the database manufacturer)")); | |
162 | wxLogMessage(_("-I-> BrowserDB::OnStartDB(%s) : End - Time needed : %ld ms"),ODBCSource.c_str(),sw.Time()); | |
163 | } | |
eacf9d88 | 164 | DbConnectInf.FreeHenv(); |
645889ad GT |
165 | return FALSE; |
166 | } | |
167 | //-------------------------------------------------------------------------------------- | |
168 | if (!Quiet) | |
169 | { | |
170 | Temp1 = db_BrowserDB->GetDatabaseName(); | |
171 | Temp2 = db_BrowserDB->GetDataSource(); | |
172 | wxLogMessage(_("-I-> BrowserDB::OnGetDataSourceODBC() - DatabaseName(%s) ; DataSource(%s)"),Temp1.c_str(),Temp2.c_str()); | |
173 | wxLogMessage(_("-I-> BrowserDB::OnStartDB(%s) : End - Time needed : %ld ms"),ODBCSource.c_str(),sw.Time()); | |
174 | } | |
175 | return TRUE; | |
176 | } | |
177 | else | |
eacf9d88 GT |
178 | { |
179 | DbConnectInf.FreeHenv(); | |
645889ad | 180 | return FALSE; |
eacf9d88 | 181 | } |
b5ffecfc | 182 | } |
645889ad | 183 | |
c92b0f9a | 184 | //---------------------------------------------------------------------------------------- |
f6bcfd97 | 185 | bool BrowserDB::OnCloseDB(int Quiet) |
b5ffecfc | 186 | { |
645889ad GT |
187 | if (!Quiet) |
188 | wxLogMessage(_("-I-> BrowserDB::OnCloseDB() : Begin ")); | |
189 | if (db_BrowserDB) | |
190 | { | |
191 | // db_BrowserDB->Close(); | |
192 | wxDbFreeConnection(db_BrowserDB); | |
eacf9d88 GT |
193 | |
194 | DbConnectInf.FreeHenv(); | |
195 | ||
645889ad GT |
196 | db_BrowserDB = NULL; |
197 | } | |
198 | if (!Quiet) | |
199 | wxLogMessage(_("\n-I-> BrowserDB::OnCloseDB() : End ")); | |
200 | return TRUE; | |
b5ffecfc | 201 | } |
645889ad | 202 | |
b5ffecfc | 203 | //---------------------------------------------------------------------------------------- |
74de91cc | 204 | bool BrowserDB::OnGetNext(int Cols,int WXUNUSED(Quiet)) |
b5ffecfc | 205 | { |
645889ad | 206 | SDWORD cb; |
d1f47235 | 207 | int i_dbDataType; |
daf06bb8 | 208 | wxChar s_temp[1024+1]; |
d1f47235 DS |
209 | long l_temp; |
210 | double f_temp; | |
211 | int AnzError=0; | |
645889ad GT |
212 | TIMESTAMP_STRUCT t_temp; |
213 | wxString Temp0; | |
214 | //----------------------------- | |
215 | if (!db_BrowserDB->GetNext()) | |
216 | { | |
74de91cc | 217 | #ifdef __WXDEBUG__ |
645889ad | 218 | Temp0.Printf(_("\n-E-> BrowserDB::OnGetNext - ODBC-Error with GetNext \n-E-> ")); |
daf06bb8 | 219 | Temp0 += GetExtendedDBErrorMsg(__TFILE__,__LINE__); |
645889ad GT |
220 | wxLogMessage(Temp0); |
221 | wxMessageBox(Temp0); | |
74de91cc JS |
222 | #endif |
223 | return FALSE; | |
645889ad GT |
224 | } |
225 | else | |
226 | { | |
d1f47235 | 227 | int i; |
645889ad GT |
228 | for (i=0;i<Cols;i++) |
229 | { | |
daf06bb8 | 230 | wxStrcpy((cl_BrowserDB+i)->tableName,_T("-E->")); |
412394b8 | 231 | i_dbDataType = (cl_BrowserDB+i)->pColFor->i_dbDataType; |
d1f47235 | 232 | if (i_dbDataType == 0) // Filter unsupported dbDataTypes |
645889ad | 233 | { |
412394b8 | 234 | if (((cl_BrowserDB+i)->pColFor->i_sqlDataType == SQL_VARCHAR) || |
d1f47235 | 235 | ((cl_BrowserDB+i)->pColFor->i_sqlDataType == SQL_LONGVARCHAR)) |
645889ad | 236 | i_dbDataType = DB_DATA_TYPE_VARCHAR; |
412394b8 | 237 | if ((cl_BrowserDB+i)->pColFor->i_sqlDataType == SQL_C_DATE) |
645889ad | 238 | i_dbDataType = DB_DATA_TYPE_DATE; |
412394b8 | 239 | if ((cl_BrowserDB+i)->pColFor->i_sqlDataType == SQL_C_BIT) |
645889ad | 240 | i_dbDataType = DB_DATA_TYPE_INTEGER; |
412394b8 | 241 | if ((cl_BrowserDB+i)->pColFor->i_sqlDataType == SQL_NUMERIC) |
645889ad | 242 | i_dbDataType = DB_DATA_TYPE_VARCHAR; |
412394b8 | 243 | if ((cl_BrowserDB+i)->pColFor->i_sqlDataType == SQL_REAL) |
645889ad GT |
244 | i_dbDataType = DB_DATA_TYPE_FLOAT; |
245 | } | |
412394b8 | 246 | if ((i_dbDataType == DB_DATA_TYPE_INTEGER) && |
d1f47235 DS |
247 | ((cl_BrowserDB+i)->pColFor->i_sqlDataType == SQL_C_DOUBLE)) |
248 | { // DBASE Numeric | |
645889ad GT |
249 | i_dbDataType = DB_DATA_TYPE_FLOAT; |
250 | } | |
251 | switch(i_dbDataType) | |
252 | { | |
253 | case DB_DATA_TYPE_VARCHAR: | |
daf06bb8 | 254 | wxStrcpy(s_temp,_T("")); |
412394b8 | 255 | if (!db_BrowserDB->GetData(i+1,(cl_BrowserDB+i)->pColFor->i_dbDataType,&s_temp,sizeof(s_temp), &cb)) |
645889ad GT |
256 | { |
257 | Temp0.Printf(_("\n-E-> BrowserDB::OnGetNext - ODBC-Error with GetNext of >%s<.\n-E-> "),(cl_BrowserDB+i)->tableName); | |
daf06bb8 | 258 | Temp0 += GetExtendedDBErrorMsg(__TFILE__,__LINE__); |
645889ad GT |
259 | wxLogMessage(Temp0); |
260 | } | |
412394b8 | 261 | Temp0.Printf((cl_BrowserDB+i)->pColFor->s_Field,s_temp); |
daf06bb8 | 262 | wxStrcpy((cl_BrowserDB+i)->tableName,Temp0.c_str()); |
645889ad GT |
263 | break; |
264 | case DB_DATA_TYPE_INTEGER: | |
265 | l_temp = 0; | |
412394b8 | 266 | if (!db_BrowserDB->GetData(i+1,(cl_BrowserDB+i)->pColFor->i_sqlDataType,&l_temp,sizeof(l_temp), &cb)) |
645889ad GT |
267 | { |
268 | Temp0.Printf(_("\n-E-> BrowserDB::OnGetData - ODBC-Error with GetNext \n-E-> ")); | |
daf06bb8 | 269 | Temp0 += GetExtendedDBErrorMsg(__TFILE__,__LINE__); |
645889ad GT |
270 | } |
271 | else | |
272 | { | |
412394b8 | 273 | Temp0.Printf((cl_BrowserDB+i)->pColFor->s_Field,l_temp); |
daf06bb8 | 274 | wxStrcpy((cl_BrowserDB+i)->tableName,Temp0.c_str()); |
645889ad GT |
275 | } |
276 | break; | |
277 | case DB_DATA_TYPE_FLOAT: | |
278 | f_temp = 0; | |
412394b8 | 279 | if (!db_BrowserDB->GetData(i+1,(cl_BrowserDB+i)->pColFor->i_sqlDataType,&f_temp,sizeof(f_temp), &cb)) |
645889ad GT |
280 | { |
281 | Temp0.Printf(_("\n-E-> BrowserDB::OnGetData - ODBC-Error with GetNext \n-E-> ")); | |
daf06bb8 | 282 | Temp0 += GetExtendedDBErrorMsg(__TFILE__,__LINE__); |
645889ad GT |
283 | wxMessageBox(Temp0); |
284 | } | |
285 | else | |
286 | { | |
412394b8 | 287 | Temp0.Printf((cl_BrowserDB+i)->pColFor->s_Field,f_temp); |
daf06bb8 | 288 | wxStrcpy((cl_BrowserDB+i)->tableName,Temp0.c_str()); |
645889ad GT |
289 | } |
290 | break; | |
291 | case DB_DATA_TYPE_DATE: | |
292 | t_temp.day = t_temp.month = t_temp.year = t_temp.hour = t_temp.minute = t_temp.second = t_temp.fraction = 0; | |
412394b8 | 293 | if (!db_BrowserDB->GetData(i+1,(cl_BrowserDB+i)->pColFor->i_sqlDataType,&t_temp,sizeof(t_temp), &cb)) |
645889ad GT |
294 | { |
295 | Temp0.Printf(_("\n-E-> BrowserDB::OnGetData - ODBC-Error with GetNext \n-E-> ")); | |
daf06bb8 | 296 | Temp0 += GetExtendedDBErrorMsg(__TFILE__,__LINE__); |
645889ad GT |
297 | } |
298 | else | |
299 | { | |
300 | // i_Nation = 0 = timestamp , 1=EU, 2=UK, 3=International, 4=US | |
d1f47235 DS |
301 | if (((cl_BrowserDB+i)->pColFor->i_Nation == 0) || // TS YYYY-MM-DD |
302 | ((cl_BrowserDB+i)->pColFor->i_Nation == 3)) // IT YYYY-MM-DD | |
645889ad | 303 | { |
412394b8 | 304 | Temp0.Printf((cl_BrowserDB+i)->pColFor->s_Field,t_temp.year,t_temp.month,t_temp.day, |
645889ad | 305 | t_temp.hour, t_temp.minute, t_temp.second, t_temp.fraction); |
daf06bb8 | 306 | wxStrcpy((cl_BrowserDB+i)->tableName,Temp0.c_str()); |
645889ad | 307 | } |
412394b8 GT |
308 | if (((cl_BrowserDB+i)->pColFor->i_Nation == 1) || // EU DD.MM.YYYY |
309 | ((cl_BrowserDB+i)->pColFor->i_Nation == 2)) // UK DD/MM/YYYY | |
645889ad | 310 | { |
412394b8 | 311 | Temp0.Printf((cl_BrowserDB+i)->pColFor->s_Field,t_temp.day,t_temp.month,t_temp.year, |
645889ad | 312 | t_temp.hour, t_temp.minute, t_temp.second, t_temp.fraction); |
daf06bb8 | 313 | wxStrcpy((cl_BrowserDB+i)->tableName,Temp0.c_str()); |
645889ad | 314 | } |
d1f47235 | 315 | if ((cl_BrowserDB+i)->pColFor->i_Nation == 3) // US MM/DD/YYYY |
645889ad | 316 | { |
412394b8 | 317 | Temp0.Printf((cl_BrowserDB+i)->pColFor->s_Field,t_temp.month,t_temp.day,t_temp.year, |
645889ad | 318 | t_temp.hour, t_temp.minute, t_temp.second, t_temp.fraction); |
daf06bb8 | 319 | wxStrcpy((cl_BrowserDB+i)->tableName,Temp0.c_str()); |
645889ad GT |
320 | } |
321 | } | |
322 | break; | |
323 | default: | |
324 | AnzError++; | |
325 | if (AnzError <= 100) | |
326 | { | |
327 | Temp0 = (cl_BrowserDB+i)->colName; | |
412394b8 | 328 | wxLogMessage(_("-E-> BrowserDB::OnGetNext - DB_DATA_TYPE_?? (%d) in Col(%s)"),(cl_BrowserDB+i)->pColFor->i_dbDataType,Temp0.c_str()); |
645889ad GT |
329 | } |
330 | else | |
331 | return TRUE; | |
412394b8 | 332 | Temp0.Printf(_("-E-> unknown Format(%d) - sql(%d)"),(cl_BrowserDB+i)->pColFor->i_dbDataType,(cl_BrowserDB+i)->pColFor->i_sqlDataType); |
daf06bb8 | 333 | wxStrcpy((cl_BrowserDB+i)->tableName,Temp0.c_str()); |
645889ad GT |
334 | break; |
335 | }; // switch | |
336 | } // for | |
337 | } // else | |
338 | ||
339 | return TRUE; | |
b5ffecfc | 340 | } |
645889ad | 341 | |
b5ffecfc | 342 | //---------------------------------------------------------------------------------------- |
f6bcfd97 | 343 | bool BrowserDB::OnSelect(wxString tb_Name, int Quiet) |
b5ffecfc | 344 | { |
645889ad GT |
345 | wxStopWatch sw; |
346 | wxString SQLStmt; | |
347 | i_Records = 0; | |
348 | //--------------------------------------------------------------------------------------- | |
74de91cc JS |
349 | wxString tablename = db_BrowserDB->SQLTableName(tb_Name.c_str()); |
350 | SQLStmt.sprintf(_T("SELECT * FROM %s"),tablename.c_str()); | |
daf06bb8 | 351 | if (!db_BrowserDB->ExecSql((wxChar *)(SQLStmt.GetData()))) |
645889ad GT |
352 | { |
353 | Temp0.Printf(_("\n-E-> BrowserDB::OnSelect - ODBC-Error with ExecSql of >%s<.\n-E-> "),tb_Name.c_str()); | |
daf06bb8 | 354 | Temp0 += GetExtendedDBErrorMsg(__TFILE__,__LINE__); |
645889ad | 355 | wxLogMessage(Temp0); |
daf06bb8 | 356 | wxMessageBox(_T("-E-> BrowserDB::OnSelect - GetData()")); |
645889ad GT |
357 | return FALSE; |
358 | } | |
359 | //--------------------------------------------------------------------------------------- | |
360 | while (db_BrowserDB->GetNext()) | |
361 | { | |
362 | i_Records++; | |
363 | } | |
364 | //--------------------------------------------------------------------------------------- | |
daf06bb8 | 365 | if (!db_BrowserDB->ExecSql((wxChar *)(SQLStmt.GetData()))) |
645889ad GT |
366 | { |
367 | Temp0.Printf(_("\n-E-> BrowserDB::OnSelect - ODBC-Error with ExecSql of >%s<.\n-E-> "),tb_Name.c_str()); | |
daf06bb8 | 368 | Temp0 += GetExtendedDBErrorMsg(__TFILE__,__LINE__); |
645889ad GT |
369 | wxLogMessage(Temp0); |
370 | return FALSE; | |
371 | } | |
372 | //--------------------------------------------------------------------------------------- | |
373 | // SetColDefs ( 0,"NAME", DB_DATA_TYPE_VARCHAR, Name, SQL_C_CHAR, sizeof(Name), TRUE, TRUE); // Primary index | |
374 | //--------------------------------------------------------------------------------------- | |
375 | if (!Quiet) | |
376 | { | |
377 | wxLogMessage(_("\n-I-> BrowserDB::OnSelect(%s) Records(%d): End - Time needed : %ld ms"),tb_Name.c_str(),i_Records,sw.Time()); | |
378 | } | |
379 | return TRUE; | |
b5ffecfc | 380 | } |
645889ad | 381 | |
b5ffecfc | 382 | //---------------------------------------------------------------------------------------- |
f6bcfd97 | 383 | bool BrowserDB::OnExecSql(wxString SQLStmt, int Quiet) |
b5ffecfc | 384 | { |
645889ad | 385 | //--------------------------------------------------------------------------------------- |
daf06bb8 | 386 | if (!db_BrowserDB->ExecSql((wxChar *)(SQLStmt.GetData()))) |
645889ad GT |
387 | { |
388 | Temp0.Printf(_("\n-E-> BrowserDB::OnExecSQL - ODBC-Error with ExecSql of >%s<.\n-E-> "),SQLStmt.c_str()); | |
daf06bb8 | 389 | Temp0 += GetExtendedDBErrorMsg(__TFILE__,__LINE__); |
645889ad GT |
390 | if (!Quiet) |
391 | wxLogMessage(Temp0); | |
392 | else | |
daf06bb8 | 393 | wxMessageBox(_T("-E-> BrowserDB::OnExecSql - ExecSql()")); |
645889ad GT |
394 | return FALSE; |
395 | } | |
396 | if (!Quiet) | |
397 | { | |
398 | // wxLogMessage(_("\n-I-> BrowserDB::OnExecSql(%s) - End - Time needed : %ld ms"),SQLStmt.c_str(),sw.Time()); | |
399 | } | |
400 | return TRUE; | |
b5ffecfc | 401 | } |
645889ad | 402 | |
b5ffecfc | 403 | //---------------------------------------------------------------------------------------- |
74de91cc | 404 | wxDbInf* BrowserDB::OnGetCatalog(int WXUNUSED(Quiet)) |
b5ffecfc | 405 | { |
daf06bb8 JS |
406 | wxChar UName[255]; |
407 | wxStrcpy(UName,UserName); | |
645889ad GT |
408 | ct_BrowserDB = db_BrowserDB->GetCatalog(UName); |
409 | return ct_BrowserDB; | |
b5ffecfc | 410 | } |
645889ad | 411 | |
b5ffecfc | 412 | //---------------------------------------------------------------------------------------- |
74de91cc | 413 | wxDbColInf* BrowserDB::OnGetColumns(wxChar *tableName, UWORD numCols, int WXUNUSED(Quiet)) |
b5ffecfc | 414 | { |
daf06bb8 | 415 | wxChar UName[255]; |
645889ad | 416 | int i; |
daf06bb8 | 417 | wxStrcpy(UName,UserName); |
645889ad | 418 | cl_BrowserDB = db_BrowserDB->GetColumns(tableName,&numCols,UName); |
412394b8 | 419 | // cl_BrowserDB->pColFor = new wxDbColFor[numCols]; |
645889ad GT |
420 | for (i=0;i<numCols;i++) |
421 | { | |
412394b8 GT |
422 | // (cl_BrowserDB->pColFor+i)->Format(1,(cl_BrowserDB+i)->dbDataType,(cl_BrowserDB+i)->sqlDataType, |
423 | // (cl_BrowserDB+i)->columnSize, (cl_BrowserDB+i)->decimalDigits); | |
424 | (cl_BrowserDB+i)->pColFor = new wxDbColFor; | |
425 | (cl_BrowserDB+i)->pColFor->Format(1, | |
426 | (cl_BrowserDB+i)->dbDataType, | |
427 | (cl_BrowserDB+i)->sqlDataType, | |
428 | (cl_BrowserDB+i)->columnSize, | |
429 | (cl_BrowserDB+i)->decimalDigits); | |
645889ad GT |
430 | } |
431 | return cl_BrowserDB; | |
b5ffecfc | 432 | } |
645889ad | 433 | |
b5ffecfc | 434 | //---------------------------------------------------------------------------------------- |
eacf9d88 | 435 | void BrowserDB::PointerToNULL(int Art) |
b5ffecfc | 436 | { |
645889ad GT |
437 |