]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/db.tex
fixed LaTeX compilation problems (part of patch 551210)
[wxWidgets.git] / docs / latex / wx / db.tex
1 \section{\class{wxDb}}\label{wxdb}
2
3 A wxDb instance is a connection to an ODBC datasource which may
4 be opened, closed, and re-opened an unlimited number of times. A
5 database connection allows function to be performed directly on the
6 datasource, as well as allowing access to any tables/views defined in
7 the datasource to which the user has sufficient privileges.
8
9 \wxheading{Include files}
10
11 <wx/db.h>
12
13 \wxheading{Helper classes and data structures}
14
15 The following classes and structs are defined in db.cpp/.h for use with the wxDb class.
16
17 \begin{itemize}\itemsep=0pt
18 \item \helpref{wxDbColFor}{wxdbcolfor}
19 \item \helpref{wxDbColInf}{wxdbcolinf}
20 \item \helpref{wxDbTableInf}{wxdbtableinf}
21 \item \helpref{wxDbInf}{wxdbinf}
22 \end{itemize}
23
24 \wxheading{Constants}
25
26 NOTE: In a future release, all ODBC class constants will be prefaced with 'wx'.
27
28 \begin{verbatim}
29 wxDB_PATH_MAX Maximum path length allowed to be passed to
30 the ODBC driver to indicate where the data
31 file(s) are located.
32
33 DB_MAX_COLUMN_NAME_LEN Maximum supported length for the name of a
34 column
35
36 DB_MAX_ERROR_HISTORY Maximum number of error messages retained in
37 the queue before being overwritten by new
38 errors.
39
40 DB_MAX_ERROR_MSG_LEN Maximum supported length of an error message
41 returned by the ODBC classes
42
43 DB_MAX_STATEMENT_LEN Maximum supported length for a complete SQL
44 statement to be passed to the ODBC driver
45
46 DB_MAX_TABLE_NAME_LEN Maximum supported length for the name of a
47 table
48
49 DB_MAX_WHERE_CLAUSE_LEN Maximum supported WHERE clause length that
50 can be passed to the ODBC driver
51
52 DB_TYPE_NAME_LEN Maximum length of the name of a column's
53 data type
54 \end{verbatim}
55
56 \subsection{Enumerated types}\label{wxdbenumeratedtypes}
57
58 \wxheading{Enumerated types}
59
60 \docparam{enum {\bf wxDbSqlLogState}}{sqlLogOFF, sqlLogON}
61
62 {\it enum {\bf wxDBMS}}
63
64 These are the databases currently tested and working with the ODBC classes. A call to \helpref{wxDb::Dbms}{wxdbdbms} will return one of these enumerated values listed below.
65
66 \begin{verbatim}
67 dbmsUNIDENTIFIED
68 dbmsORACLE
69 dbmsSYBASE_ASA // Adaptive Server Anywhere
70 dbmsSYBASE_ASE // Adaptive Server Enterprise
71 dbmsMS_SQL_SERVER
72 dbmsMY_SQL
73 dbmsPOSTGRES
74 dbmsACCESS
75 dbmsDBASE
76 dbmsINFORMIX
77 dbmsVIRTUOSO
78 dbmsDB2
79 dbmdINTERBASE
80 \end{verbatim}
81
82 See the remarks in \helpref{wxDb::Dbms}{wxdbdbms} for exceptions/issues with each of these database engines.
83
84
85 \wxheading{Public member variables}
86
87 \docparam{SWORD {\bf wxDb::cbErrorMsg}}{This member variable is populated as a result of calling \helpref{wxDb::GetNextError}{wxdbgetnexterror}. Contains the count of bytes in the wxDb::errorMsg string.}
88
89 \docparam{int {\bf wxDb::DB\_STATUS}}{The last ODBC error/status that occurred on this data connection. Possible codes are:}
90
91 \begin{verbatim}
92 DB_ERR_GENERAL_WARNING // SqlState = '01000'
93 DB_ERR_DISCONNECT_ERROR // SqlState = '01002'
94 DB_ERR_DATA_TRUNCATED // SqlState = '01004'
95 DB_ERR_PRIV_NOT_REVOKED // SqlState = '01006'
96 DB_ERR_INVALID_CONN_STR_ATTR // SqlState = '01S00'
97 DB_ERR_ERROR_IN_ROW // SqlState = '01S01'
98 DB_ERR_OPTION_VALUE_CHANGED // SqlState = '01S02'
99 DB_ERR_NO_ROWS_UPD_OR_DEL // SqlState = '01S03'
100 DB_ERR_MULTI_ROWS_UPD_OR_DEL // SqlState = '01S04'
101 DB_ERR_WRONG_NO_OF_PARAMS // SqlState = '07001'
102 DB_ERR_DATA_TYPE_ATTR_VIOL // SqlState = '07006'
103 DB_ERR_UNABLE_TO_CONNECT // SqlState = '08001'
104 DB_ERR_CONNECTION_IN_USE // SqlState = '08002'
105 DB_ERR_CONNECTION_NOT_OPEN // SqlState = '08003'
106 DB_ERR_REJECTED_CONNECTION // SqlState = '08004'
107 DB_ERR_CONN_FAIL_IN_TRANS // SqlState = '08007'
108 DB_ERR_COMM_LINK_FAILURE // SqlState = '08S01'
109 DB_ERR_INSERT_VALUE_LIST_MISMATCH // SqlState = '21S01'
110 DB_ERR_DERIVED_TABLE_MISMATCH // SqlState = '21S02'
111 DB_ERR_STRING_RIGHT_TRUNC // SqlState = '22001'
112 DB_ERR_NUMERIC_VALUE_OUT_OF_RNG // SqlState = '22003'
113 DB_ERR_ERROR_IN_ASSIGNMENT // SqlState = '22005'
114 DB_ERR_DATETIME_FLD_OVERFLOW // SqlState = '22008'
115 DB_ERR_DIVIDE_BY_ZERO // SqlState = '22012'
116 DB_ERR_STR_DATA_LENGTH_MISMATCH // SqlState = '22026'
117 DB_ERR_INTEGRITY_CONSTRAINT_VIOL // SqlState = '23000'
118 DB_ERR_INVALID_CURSOR_STATE // SqlState = '24000'
119 DB_ERR_INVALID_TRANS_STATE // SqlState = '25000'
120 DB_ERR_INVALID_AUTH_SPEC // SqlState = '28000'
121 DB_ERR_INVALID_CURSOR_NAME // SqlState = '34000'
122 DB_ERR_SYNTAX_ERROR_OR_ACCESS_VIOL // SqlState = '37000'
123 DB_ERR_DUPLICATE_CURSOR_NAME // SqlState = '3C000'
124 DB_ERR_SERIALIZATION_FAILURE // SqlState = '40001'
125 DB_ERR_SYNTAX_ERROR_OR_ACCESS_VIOL2 // SqlState = '42000'
126 DB_ERR_OPERATION_ABORTED // SqlState = '70100'
127 DB_ERR_UNSUPPORTED_FUNCTION // SqlState = 'IM001'
128 DB_ERR_NO_DATA_SOURCE // SqlState = 'IM002'
129 DB_ERR_DRIVER_LOAD_ERROR // SqlState = 'IM003'
130 DB_ERR_SQLALLOCENV_FAILED // SqlState = 'IM004'
131 DB_ERR_SQLALLOCCONNECT_FAILED // SqlState = 'IM005'
132 DB_ERR_SQLSETCONNECTOPTION_FAILED // SqlState = 'IM006'
133 DB_ERR_NO_DATA_SOURCE_DLG_PROHIB // SqlState = 'IM007'
134 DB_ERR_DIALOG_FAILED // SqlState = 'IM008'
135 DB_ERR_UNABLE_TO_LOAD_TRANSLATION_DLL // SqlState = 'IM009'
136 DB_ERR_DATA_SOURCE_NAME_TOO_LONG // SqlState = 'IM010'
137 DB_ERR_DRIVER_NAME_TOO_LONG // SqlState = 'IM011'
138 DB_ERR_DRIVER_KEYWORD_SYNTAX_ERROR // SqlState = 'IM012'
139 DB_ERR_TRACE_FILE_ERROR // SqlState = 'IM013'
140 DB_ERR_TABLE_OR_VIEW_ALREADY_EXISTS // SqlState = 'S0001'
141 DB_ERR_TABLE_NOT_FOUND // SqlState = 'S0002'
142 DB_ERR_INDEX_ALREADY_EXISTS // SqlState = 'S0011'
143 DB_ERR_INDEX_NOT_FOUND // SqlState = 'S0012'
144 DB_ERR_COLUMN_ALREADY_EXISTS // SqlState = 'S0021'
145 DB_ERR_COLUMN_NOT_FOUND // SqlState = 'S0022'
146 DB_ERR_NO_DEFAULT_FOR_COLUMN // SqlState = 'S0023'
147 DB_ERR_GENERAL_ERROR // SqlState = 'S1000'
148 DB_ERR_MEMORY_ALLOCATION_FAILURE // SqlState = 'S1001'
149 DB_ERR_INVALID_COLUMN_NUMBER // SqlState = 'S1002'
150 DB_ERR_PROGRAM_TYPE_OUT_OF_RANGE // SqlState = 'S1003'
151 DB_ERR_SQL_DATA_TYPE_OUT_OF_RANGE // SqlState = 'S1004'
152 DB_ERR_OPERATION_CANCELLED // SqlState = 'S1008'
153 DB_ERR_INVALID_ARGUMENT_VALUE // SqlState = 'S1009'
154 DB_ERR_FUNCTION_SEQUENCE_ERROR // SqlState = 'S1010'
155 DB_ERR_OPERATION_INVALID_AT_THIS_TIME // SqlState = 'S1011'
156 DB_ERR_INVALID_TRANS_OPERATION_CODE // SqlState = 'S1012'
157 DB_ERR_NO_CURSOR_NAME_AVAIL // SqlState = 'S1015'
158 DB_ERR_INVALID_STR_OR_BUF_LEN // SqlState = 'S1090'
159 DB_ERR_DESCRIPTOR_TYPE_OUT_OF_RANGE // SqlState = 'S1091'
160 DB_ERR_OPTION_TYPE_OUT_OF_RANGE // SqlState = 'S1092'
161 DB_ERR_INVALID_PARAM_NO // SqlState = 'S1093'
162 DB_ERR_INVALID_SCALE_VALUE // SqlState = 'S1094'
163 DB_ERR_FUNCTION_TYPE_OUT_OF_RANGE // SqlState = 'S1095'
164 DB_ERR_INF_TYPE_OUT_OF_RANGE // SqlState = 'S1096'
165 DB_ERR_COLUMN_TYPE_OUT_OF_RANGE // SqlState = 'S1097'
166 DB_ERR_SCOPE_TYPE_OUT_OF_RANGE // SqlState = 'S1098'
167 DB_ERR_NULLABLE_TYPE_OUT_OF_RANGE // SqlState = 'S1099'
168 DB_ERR_UNIQUENESS_OPTION_TYPE_OUT_OF_RANGE // SqlState = 'S1100'
169 DB_ERR_ACCURACY_OPTION_TYPE_OUT_OF_RANGE // SqlState = 'S1101'
170 DB_ERR_DIRECTION_OPTION_OUT_OF_RANGE // SqlState = 'S1103'
171 DB_ERR_INVALID_PRECISION_VALUE // SqlState = 'S1104'
172 DB_ERR_INVALID_PARAM_TYPE // SqlState = 'S1105'
173 DB_ERR_FETCH_TYPE_OUT_OF_RANGE // SqlState = 'S1106'
174 DB_ERR_ROW_VALUE_OUT_OF_RANGE // SqlState = 'S1107'
175 DB_ERR_CONCURRENCY_OPTION_OUT_OF_RANGE // SqlState = 'S1108'
176 DB_ERR_INVALID_CURSOR_POSITION // SqlState = 'S1109'
177 DB_ERR_INVALID_DRIVER_COMPLETION // SqlState = 'S1110'
178 DB_ERR_INVALID_BOOKMARK_VALUE // SqlState = 'S1111'
179 DB_ERR_DRIVER_NOT_CAPABLE // SqlState = 'S1C00'
180 DB_ERR_TIMEOUT_EXPIRED // SqlState = 'S1T00'
181 \end{verbatim}
182
183 \docparam{struct {\bf wxDb::dbInf}}{This structure is internal to the
184 wxDb class and contains details of the ODBC datasource that the current
185 instance of the wxDb is connected to in its members. When the datasource
186 is opened, all of the information contained in the dbInf structure is
187 queried from the datasource. This information is used almost exclusively
188 within the ODBC class library. Where there may be a need for particular
189 portions of this information outside of the class library, member
190 functions (e.g.
191 \helpref{wxDbTable::IsCursorClosedOnCommit}{wxdbtableiscursorclosedoncommit})
192 have been added for ease of use.}
193
194 \begin{verbatim}
195 wxChar dbmsName[40] - Name of the dbms product
196 wxChar dbmsVer[64] - Version # of the dbms product
197 wxChar driverName[40] - Driver name
198 wxChar odbcVer[60] - ODBC version of the driver
199 wxChar drvMgrOdbcVer[60] - ODBC version of the driver manager
200 wxChar driverVer[60] - Driver version
201 wxChar serverName[80] - Server Name, typically a connect string
202 wxChar databaseName[128] - Database filename
203 wxChar outerJoins[2] - Does datasource support outer joins
204 wxChar procedureSupport[2] - Does datasource support stored
205 procedures
206 UWORD maxConnections - Maximum # of connections datasource
207 supports
208 UWORD maxStmts - Maximum # of HSTMTs per HDBC
209 UWORD apiConfLvl - ODBC API conformance level
210 UWORD cliConfLvl - Is datasource SAG compliant
211 UWORD sqlConfLvl - SQL conformance level
212 UWORD cursorCommitBehavior - How cursors are affected on db commit
213 UWORD cursorRollbackBehavior - How cursors are affected on db
214 rollback
215 UWORD supportNotNullClause - Does datasource support NOT NULL
216 clause
217 wxChar supportIEF[2] - Integrity Enhancement Facility (Ref.
218 Integrity)
219 UDWORD txnIsolation - Transaction isolation level supported by
220 driver
221 UDWORD txnIsolationOptions - Transaction isolation level options
222 available
223 UDWORD fetchDirections - Fetch directions supported
224 UDWORD lockTypes - Lock types supported in SQLSetPos
225 UDWORD posOperations - Position operations supported in
226 SQLSetPos
227 UDWORD posStmts - Position statements supported
228 UDWORD scrollConcurrency - Scrollable cursor concurrency options
229 supported
230 UDWORD scrollOptions - Scrollable cursor options supported
231 UDWORD staticSensitivity - Can additions/deletions/updates be
232 detected
233 UWORD txnCapable - Indicates if datasource supports
234 transactions
235 UDWORD loginTimeout - Number seconds to wait for a login
236 request
237 \end{verbatim}
238
239 \docparam{wxChar {\bf wxDb::errorList}[DB\_MAX\_ERROR\_HISTORY][DB\_MAX\_ERROR\_MSG\_LEN]}{The last n ODBC errors that have occurred on this database connection.}
240
241 \docparam{wxChar {\bf wxDb::errorMsg}[SQL\_MAX\_MESSAGE\_LENGTH]}{This member variable is populated as a result of calling \helpref{wxDb::GetNextError}{wxdbgetnexterror}. It contains the ODBC error message text.}
242
243 \docparam{SDWORD {\bf wxDb::nativeError}}{Set by wxDb::DispAllErrors,
244 wxDb::GetNextError, and wxDb::DispNextError. It contains the
245 datasource-specific error code returned by the datasource to the ODBC driver.
246 Used for reporting ODBC errors.}
247
248 \docparam{wxChar {\bf wxDb::sqlState}[20]}{Set by wxDb::TranslateSqlState().
249 Indicates the error state after a failed ODBC operation. Used for reporting
250 ODBC errors.}
251
252 \wxheading{Remarks}
253
254 Default cursor scrolling is defined by wxODBC\_FWD\_ONLY\_CURSORS in setup.h
255 when the wxWindows library is built. This behavior can be overridden when
256 an instance of a wxDb is created (see \helpref{wxDb constructor}{wxdbconstr}).
257 Default setting of this value TRUE, as not all databases/drivers support
258 both types of cursors.
259
260 \wxheading{See also}
261
262 \helpref{wxDbColFor}{wxdbcolfor}, \helpref{wxDbColInf}{wxdbcolinf},
263 \helpref{wxDbTable}{wxdbtable}, \helpref{wxDbTableInf}{wxdbtableinf},
264 \helpref{wxDbInf}{wxdbinf}
265
266 \subsection{Associated non-class functions}\label{wxdbfunctions}
267
268 The following functions are used in conjunction with the wxDb class.
269
270
271 \func{void}{wxDbCloseConnections}{\void}
272
273 \wxheading{Remarks}
274
275 Closes all cached connections that have been made through use of the
276 \helpref{wxDbGetConnection}{wxdbfunctions} function.
277
278 NOTE: These connections are closed regardless of whether they are in use
279 or not. This function should only be called after the program has
280 finished using the connections and all wxDbTable instances that use any of
281 the connections have been closed.
282
283 This function performs a \helpref{wxDb::CommitTrans}{wxdbcommittrans}
284 on the connection before closing it to commit any changes that are still
285 pending, as well as to avoid any function sequence errors upon closing
286 each connection.
287
288
289 \func{int }{wxDbConnectionsInUse}{\void}
290
291 \wxheading{Remarks}
292
293 Returns a count of how many database connections are currently free ( not
294 being used) that have been cached through use of the \helpref{wxDbGetConnection}{wxdbfunctions}
295 function.
296
297
298 \func{bool}{wxDbFreeConnection}{\param{wxDb *}{pDb}}
299
300 \wxheading{Remarks}
301
302 Searches the list of cached database connections connection for one matching
303 the passed in wxDb instance. If found, that cached connection is freed.
304
305 Freeing a connection means that it is marked as available (free) in the
306 cache of connections, so that a call to \helpref{wxDbGetConnection}{wxdbfunctions}
307 is able to return a pointer to the wxDb instance for use. Freeing a
308 connection does NOT close the connection, it only makes the connection
309 available again.
310
311
312 \func{wxDb *}{wxDbGetConnection}{\param{wxDbConnectInf *}{pDbConfig},
313 \param{bool }{FwdOnlyCursors=(bool)wxODBC\_FWD\_ONLY\_CURSORS}}
314
315 \wxheading{Remarks}
316
317 This function is used to request a "new" wxDb instance for use by the program.
318 The wxDb instance returned is also opened (see \helpref{wxDb::Open}{wxdbopen}).
319
320 This function (along with wxDbFreeConnection() and wxDbCloseConnection())
321 maintain a cached of wxDb instances for user/re-use by a program. When a
322 program needs a wxDb instance, it may call this function to obtain a wxDb
323 instance. If there is a wxDb instance in the cache that is currently unused
324 that matches the connection requirements specified in {\it'pDbConfig'} then
325 that cached connection is marked as no longer being free, and a pointer to
326 the wxDb instance is returned.
327
328 If there are no connections available in the cache that meet the requirements
329 given in {\it'pDbConfig'}, then a new wxDb instance is created to connect
330 to the datasource specified in {\it'pDbConfig'} using the userID and password
331 given in {\it'pDbConfig'}.
332
333 NOTE: The caching routine also uses the \helpref{wxDb::Open}{wxdbopen}
334 connection datatype copying code. If the call to wxDbGetConnection()
335 requests a connection to a datasource, and there is not one available in the
336 cache, a new connection is created. But when the connection is opened,
337 instead of polling the datasource over again for its datatypes, if a
338 connection to the same datasource (using the same userID/password) has already
339 been done previously, the new connection skips querying the datasource for
340 its datatypes, and uses the same datatypes determined previously by the
341 other connection(s) for that same datasource. This cuts down greatly on
342 network traffic, database load, and connection creation time.
343
344 When the program is done using a connection created through a call to
345 wxDbGetConnection(), the program should call wxDbFreeConnection() to release
346 the wxDb instance back to the cache. DO NOT DELETE THE wxDb INSTANCE!
347 Deleting the wxDb instance returned can cause a crash/memory corruption
348 later in the program when the cache is cleaned up.
349
350 When exiting the program, call wxDbCloseConnections() to close all the
351 cached connections created by calls to wxDbGetConnection().
352
353
354 \func{const wxChar *}{wxDbLogExtendedErrorMsg}{\param{const wxChar *}{userText}, \param{wxDb *}{pDb}, \param{wxChar *}{ErrFile}, \param{int }{ErrLine}}
355
356 Writes a message to the wxLog window (stdout usually) when an internal
357 error situation occurs. This function only works in DEBUG builds
358
359
360 \func{bool}{wxDbSqlLog}{\param{wxDbSqlLogState }{state}, \param{const wxString \&}{filename = SQL\_LOG\_FILENAME}}
361
362 \wxheading{Remarks}
363
364 This function sets the sql log state for all open wxDb objects
365
366
367 \func{bool}{wxDbGetDataSource}{\param{HENV }{henv}, \param{wxChar *}{Dsn}, \param{SWORD }{DsnMax}, \param{wxChar *}{DsDesc}, \param{SWORD }{DsDescMax}, \param{UWORD }{direction = SQL\_FETCH\_NEXT}}
368
369 \wxheading{Remarks}
370
371 This routine queries the ODBC driver manager for a list of available
372 datasources. Repeatedly call this function to obtain all the datasources
373 available through the ODBC driver manager on the current workstation.
374
375 wxStringList strList;
376
377 while (wxDbGetDataSource(DbConnectInf.GetHenv(), Dsn, SQL\_MAX\_DSN\_LENGTH+1, DsDesc, 255))
378 strList.Add(Dsn);
379
380
381 \latexignore{\rtfignore{\wxheading{Members}}}
382
383 \membersection{wxDb::wxDb}\label{wxdbconstr}
384
385 \func{}{wxDb}{\void}
386
387 Default constructor.
388
389 \func{}{wxDb}{\param{const HENV \&}{aHenv}, \param{bool }{FwdOnlyCursors=(bool)wxODBC\_FWD\_ONLY\_CURSORS}}
390
391 Constructor, used to create an ODBC connection to a datasource.
392
393 \wxheading{Parameters}
394
395 \docparam{aHenv}{Environment handle used for this connection. See
396 \helpref{wxDConnectInf::AllocHenv}{wxdbconnectinfallochenv}}
397
398 \docparam{FwdOnlyCursors}{Will cursors created for use with this datasource
399 connection only allow forward scrolling cursors.}
400
401 \wxheading{Remarks}
402
403 This is the constructor for the wxDb class. The wxDb object must
404 be created and opened before any database activity can occur.
405
406 \wxheading{Example}
407
408 \begin{verbatim}
409 wxDbConnectInf ConnectInf;
410 ....Set values for member variables of ConnectInf here
411
412 wxDb sampleDB(ConnectInf.GetHenv());
413 if (!sampleDB.Open(ConnectInf.GetDsn(), ConnectInf.GetUserID(),
414 ConnectInf.GetPassword()))
415 {
416 // Error opening datasource
417 }
418 \end{verbatim}
419
420 \wxheading{See also}
421
422 \helpref{wxDbGetConnection}{wxdbfunctions},
423
424
425 \membersection{wxDb::Catalog}\label{wxdbcatalog}
426
427 \func{bool}{Catalog}{\param{wxChar *}{ userID}, \param{const wxString \&}{fileName =
428 SQL\_CATALOG\_FILENAME}}
429
430 Allows a data "dictionary" of the datasource to be created, dumping pertinent
431 information about all data tables to which the user specified in userID has
432 access.
433
434 \wxheading{Parameters}
435
436 \docparam{userID}{Database user name to use in accessing the database. All
437 tables to which this user has rights will be evaluated in the catalog.}
438
439 \docparam{fileName}{{\it OPTIONAL}. Name of the text file to create and write
440 the DB catalog to. Default is SQL\_CATALOG\_FILENAME.}
441
442 \wxheading{Return value}
443
444 Returns TRUE if the catalog request was successful, or FALSE if there was some
445 reason that the catalog could not be generated.
446
447 \wxheading{Example}
448
449 \begin{verbatim}
450 ============== ============== ================ ========= =======
451 TABLE NAME COLUMN NAME DATA TYPE PRECISION LENGTH
452 ============== ============== ================ ========= =======
453 EMPLOYEE RECID (0008)NUMBER 15 8
454 EMPLOYEE USER_ID (0012)VARCHAR2 13 13
455 EMPLOYEE FULL_NAME (0012)VARCHAR2 26 26
456 EMPLOYEE PASSWORD (0012)VARCHAR2 26 26
457 EMPLOYEE START_DATE (0011)DATE 19 16
458 \end{verbatim}
459
460
461 \membersection{wxDb::Close}\label{wxdbclose}
462
463 \func{void}{Close}{\void}
464
465 Closes the database connection.
466
467 \wxheading{Remarks}
468
469 At the end of your program, when you have finished all of your database work,
470 you must close the ODBC connection to the datasource. There are actually
471 four steps involved in doing this as illustrated in the example.
472
473 Any wxDbTable instances which use this connection must be deleted before
474 closing the database connection.
475
476 \wxheading{Example}
477
478 \begin{verbatim}
479 // Commit any open transactions on the datasource
480 sampleDB.CommitTrans();
481
482 // Delete any remaining wxDbTable objects allocated with new
483 delete parts;
484
485 // Close the wxDb connection when finished with it
486 sampleDB.Close();
487 \end{verbatim}
488
489
490 \membersection{wxDb::CommitTrans}\label{wxdbcommittrans}
491
492 \func{bool}{CommitTrans}{\void}
493
494 Permanently "commits" changes (insertions/deletions/updates) to the database.
495
496 \wxheading{Return value}
497
498 Returns TRUE if the commit was successful, or FALSE if the commit failed.
499
500 \wxheading{Remarks}
501
502 Transactions begin implicitly as soon as you make a change to the database
503 with an insert/update/delete, or any other direct SQL command that performs
504 one of these operations against the datasource.
505 At any time thereafter, to save the changes to disk permanently, "commit"
506 them by calling this function.
507
508 Calling this member function commits ALL open transactions on this ODBC
509 connection. For example, if three different wxDbTable instances used the
510 same connection to the datasource, committing changes made on one of those
511 wxDbTable instances commits any pending transactions on all three wxDbTable
512 instances.
513
514 Until a call to wxDb::CommitTrans() is made, no other user or cursor is able
515 to see any changes made to the row(s) that have been inserted/modified/deleted.
516
517
518 \wxheading{Special Note : {\it Cursors} }
519
520 \normalbox{It is important to understand that different database/ODBC driver
521 combinations handle transactions differently. One thing in particular that
522 you must pay attention to is cursors, in regard to transactions. Cursors are
523 what allow you to scroll through records forward and backward and to
524 manipulate records as you scroll through them. When you issue a query, a
525 cursor is created behind the scenes. The cursor keeps track of the query and
526 keeps track of the current record pointer. After you commit or rollback a
527 transaction, the cursor may be closed automatically. This is database
528 dependent, and with some databases this behavior can be controlled through
529 management functions. This means you would need to requery the datasource
530 before you can perform any additional work using this cursor. This is only
531 necessary however if the datasource closes the cursor after a commit or
532 rollback. Use the
533 \helpref{wxDbTable::IsCursorClosedOnCommit}{wxdbtableiscursorclosedoncommit}
534 member function to determine the datasource's transaction behavior. Note, in
535 many situations it is very inefficient to assume the cursor is closed and
536 always requery. This could put a significant, unnecessary load on datasources
537 that leave the cursors open after a transaction.}
538
539
540 \membersection{wxDb::CreateView}\label{wxdbcreateviews}
541
542 \func{bool}{CreateView}{\param{const wxString \&}{ viewName},
543 \param{const wxString \&}{ colList}, \param{const wxString \&}{pSqlStmt}}
544
545 Creates a SQL VIEW of one or more tables in a single datasource. Note that
546 this function will only work against databases which support views (currently
547 only Oracle as of November 21 2000).
548
549 \wxheading{Parameters}
550
551 \docparam{viewName}{The name of the view. e.g. PARTS\_V}
552
553 \docparam{colList}{{\it OPTIONAL} Pass in a comma delimited list of column
554 names if you wish to explicitly name each column in the result set. If not
555 desired, pass in an empty string and the column names from the associated
556 table(s) will be used.}
557
558 \docparam{pSqlStmt}{Pointer to the select statement portion of the CREATE
559 VIEW statement. Must be a complete, valid SQL SELECT statement.}
560
561 \wxheading{Remarks}
562
563 A 'view' is a logical table that derives columns from one or more other
564 tables or views. Once the view is created, it can be queried exactly like
565 any other table in the database.
566
567 NOTE: Views are not available with all datasources. Oracle is one example
568 of a datasource which does support views.
569
570 \wxheading{Example}
571
572 \begin{verbatim}
573 // Incomplete code sample
574 db.CreateView("PARTS_SD1", "PN, PD, QTY",
575 "SELECT PART_NO, PART_DESC, QTY_ON_HAND * 1.1 FROM PARTS \
576 WHERE STORAGE_DEVICE = 1");
577
578 // PARTS_SD1 can now be queried just as if it were a data table.
579 // e.g. SELECT PN, PD, QTY FROM PARTS_SD1
580 \end{verbatim}
581
582
583 \membersection{wxDb::Dbms}\label{wxdbdbms}
584
585 \func{wxDBMS }{Dbms}{\void}
586
587 \wxheading{Remarks}
588
589 The return value will be of the enumerated type wxDBMS. This enumerated
590 type contains a list of all the currently tested and supported databases.
591
592 Additional databases may work with these classes, but the databases
593 returned by this function have been tested and confirmed to work with
594 these ODBC classes.
595
596 Possible values returned by this function can be viewed in the
597 \helpref{Enumerated types}{wxdbenumeratedtypes} section of wxDb.
598
599 There are known issues with conformance to the ODBC standards with several
600 datasources supported by the wxWindows ODBC classes. Please see the overview
601 for specific details on which datasource have which issues.
602
603 \wxheading{Return value}
604
605 The return value will indicate which of the supported datasources is
606 currently connected to by this connection. In the event that the
607 datasource is not recognized, a value of 'dbmsUNIDENTIFIED' is returned.
608
609
610 \membersection{wxDb::DispAllErrors}\label{wxdbdispallerrors}
611
612 \func{bool}{DispAllErrors}{\param{HENV}{ aHenv}, \param{HDBC}{ aHdbc = SQL\_NULL\_HDBC}, \param{HSTMT}{ aHstmt = SQL\_NULL\_HSTMT}}
613
614 Used to log all database errors that occurred as a result of an executed
615 database command. This logging is automatic and also includes debug logging
616 when compiled in debug mode via \helpref{wxLogDebug}{wxlogdebug}. If logging
617 is turned on via \helpref{wxDb::SetSqlLogging}{wxdbsetsqllogging}, then an
618 entry is also logged to the defined log file.
619
620 \wxheading{Parameters}
621
622 \docparam{aHenv}{Handle to the ODBC environment.}
623
624 \docparam{aHdbc}{Handle to the ODBC connection. Pass this in if the ODBC
625 function call that erred required a hdbc or hstmt argument.}
626
627 \docparam{aHstmt}{Handle to the ODBC statement being executed against. Pass
628 this in if the ODBC function call that erred out required a hstmt argument.}
629
630 \wxheading{Remarks}
631
632 This member function will log all of the ODBC error messages for the last
633 ODBC function call that was made. This function is normally used internally
634 within the ODBC class library, but can be used programmatically after calling
635 ODBC functions directly (i.e. SQLFreeEnv()).
636
637 \wxheading{Return value}
638
639 The function always returns FALSE, so a call to this function can be made
640 in the return statement of a code block in the event of a failure to
641 perform an action (see the example below).
642
643 \wxheading{See also}
644
645 \helpref{wxDb::SetSqlLogging}{wxdbsetsqllogging}, wxDbSqlLog
646
647 \wxheading{Example}
648
649 \begin{verbatim}
650 if (SQLExecDirect(hstmt, (UCHAR FAR *) pSqlStmt, SQL_NTS) != SQL_SUCCESS)
651 // Display all ODBC errors for this stmt
652 return(db.DispAllErrors(db.henv, db.hdbc, hstmt));
653 \end{verbatim}
654
655
656 \membersection{wxDb::DispNextError}\label{wxdbdispnexterror}
657
658 \func{void}{DispNextError}{\void}
659
660 \wxheading{Remarks}
661
662 This function is normally used internally within the ODBC class library.
663 It could be used programmatically after calling ODBC functions directly. This
664 function works in conjunction with \helpref{wxDb::GetNextError}{wxdbgetnexterror} when errors (or
665 sometimes informational messages) returned from ODBC need to be analyzed
666 rather than simply displaying them as an error. GetNextError() retrieves
667 the next ODBC error from the ODBC error queue. The wxDb member variables
668 "sqlState", "nativeError" and "errorMsg" could then be evaluated. To
669 display the error retrieved, DispNextError() could then be called.
670 The combination of GetNextError() and DispNextError() can be used to
671 iteratively step through the errors returned from ODBC evaluating each
672 one in context and displaying the ones you choose.
673
674 \wxheading{Example}
675
676 \begin{verbatim}
677 // Drop the table before attempting to create it
678 sprintf(sqlStmt, "DROP TABLE %s", tableName);
679 // Execute the drop table statement
680 if (SQLExecDirect(hstmt,(UCHAR FAR *)sqlStmt,SQL_NTS) != SQL_SUCCESS)
681 {
682 // Check for sqlState = S0002, "Table or view not found".
683 // Ignore this error, bomb out on any other error.
684 pDb->GetNextError(henv, hdbc, hstmt);
685 if (wxStrcmp(pDb->sqlState, "S0002"))
686 {
687 pDb->DispNextError(); // Displayed error retrieved
688 pDb->DispAllErrors(henv, hdbc, hstmt); // Display all other errors, if any
689 pDb->RollbackTrans(); // Rollback the transaction
690 CloseCursor(); // Close the cursor
691 return(FALSE); // Return Failure
692 }
693 }
694 \end{verbatim}
695
696
697 \membersection{wxDb::DropView}\label{wxdbdropview}
698
699 \func{bool}{DropView}{\param{const wxString \&}{viewName}}
700
701 Drops the data table view named in 'viewName'.
702
703 \wxheading{Parameters}
704
705 \docparam{viewName}{Name of the view to be dropped.}
706
707 \wxheading{Remarks}
708
709 If the view does not exist, this function will return TRUE. Note that views are not supported with all datasources.
710
711 \membersection{wxDb::ExecSql}\label{wxdbexecsql}
712
713
714 \func{bool}{ExecSql}{\param{const wxString \&}{pSqlStmt}}
715
716 Allows a native SQL command to be executed directly against the datasource. In addition to being able to run any standard SQL command, use of this function allows a user to (potentially) utilize features specific to the datasource they are connected to that may not be available through ODBC. The ODBC driver will pass the specified command directly to the datasource.
717
718 \wxheading{Parameters}
719
720 \docparam{pSqlStmt}{Pointer to the SQL statement to be executed.}
721
722 \wxheading{Remarks}
723
724 This member extends the wxDb class and allows you to build and execute ANY VALID
725 SQL statement against the datasource. This allows you to extend the class
726 library by being able to issue any SQL statement that the datasource is capable
727 of processing.
728
729 \wxheading{See also}
730
731 \helpref{wxDb::GetData}{wxdbgetdata}, \helpref{wxDb::GetNext}{wxdbgetnext}
732
733
734 \membersection{wxDb::FwdOnlyCursors}\label{wxdbfwdonlycursors}
735
736 \func{bool}{IsFwdOnlyCursors}{\void}
737
738 Older form (pre-2.3/2.4 of wxWindows) of the
739 \helpref{wxDb::IsFwdOnlyCursors}{wxdbisfwdonlycursors}. This method is
740 provided for backward compatability only. The method
741 \helpref{wxDb::IsFwdOnlyCursors}{wxdbisfwdonlycursors} should be
742 used in place of this method.
743
744
745 \func{wxDbInf *}{GetCatalog}{\param{const wxChar *}{userID}}
746
747 \membersection{wxDb::GetCatalog}\label{wxdbgetcatalog}
748
749 \func{wxDbInf *}{GetCatalog}{\param{const wxChar *}{userID}}
750
751 Returns a \helpref{wxDbInf}{wxdbinf} pointer that points to the catalog
752 (datasource) name, schema, number of tables accessible to the current user,
753 and a wxDbTableInf pointer to all data pertaining to all tables in the users
754 catalog.
755
756 \wxheading{Parameters}
757
758 \docparam{userID}{Owner/Schema of the table. Specify a userID when the datasource you are connected to allows multiple unique tables with the same name to be owned by different users. {\it userID} is evaluated as follows:}
759
760 \begin{verbatim}
761 userID == NULL ... UserID is ignored (DEFAULT)
762 userID == "" ... UserID set equal to 'this->uid'
763 userID != "" ... UserID set equal to 'userID'
764 \end{verbatim}
765
766 \wxheading{Remarks}
767
768 The returned catalog will only contain catalog entries for tables to which the user specified in 'userID' has sufficient privileges. If no user is specified (NULL passed in), a catalog pertaining to all tables in the datasource accessible to the connected user (permissions apply) via this connection will be returned.
769
770 \membersection{wxDb::GetColumnCount}\label{wxdbgetcolumncount}
771
772 \func{int }{GetColumnCount}{\param{const wxString \&}{tableName}, \param{const wxChar *}{userID}}
773
774 \wxheading{Parameters}
775
776 \docparam{tableName}{The table name you wish to obtain column information about.}
777
778 \docparam{userID}{Name of the user that owns the table(s) (also referred to as schema).
779 Required for some datasources for situations where there may be multiple tables with the
780 same name in the datasource, but owned by different users. {\it userID } is
781 evaluated in the following manner:}
782
783 \begin{verbatim}
784 userID == NULL ... UserID is ignored (DEFAULT)
785 userID == "" ... UserID set equal to 'this->uid'
786 userID != "" ... UserID set equal to 'userID'
787 \end{verbatim}
788
789 \wxheading{Return value}
790
791 Returns a count of how many columns are in the specified table. If an error
792 occurs retrieving the number of columns, this function will return a -1.
793
794 \membersection{wxDb::GetColumns}\label{wxdbgetcolumns}
795
796 \func{wxDbColInf *}{GetColumns}{\param{const wxString \&}{tableName}, \param{UWORD *}{numCols}, \param{const wxChar *}{userID=NULL}}
797
798 \func{wxDbColInf *}{GetColumns}{\param{wxChar *}{tableName[]}, \param{const wxChar *}{userID}}
799
800 \wxheading{Parameters}
801
802 \docparam{tableName}{The table name you wish to obtain column information about.}
803 \docparam{numCols}{Pointer to a UWORD which will hold a count of the number of columns returned by this function}
804 \docparam{tableName[]}{An array of pointers to table names you wish to obtain column information about. The last element of this array must be a NULL string.}
805 \docparam{userID}{Name of the user that owns the table(s) (also referred to as schema). Required for some datasources for situations where there may be multiple tables with the same name in the datasource, but owned by different users. {\it userID} is evaluated in the following manner:}
806
807 \begin{verbatim}
808 userID == NULL ... UserID is ignored (DEFAULT)
809 userID == "" ... UserID set equal to 'this->uid'
810 userID != "" ... UserID set equal to 'userID'
811 \end{verbatim}
812
813 \wxheading{Return value}
814
815 This function returns a pointer to an array of \helpref{wxDbColInf}{wxdbcolinf}
816 structures, allowing you to obtain information regarding the columns of the
817 named table(s). If no columns were found, or an error occurred, this pointer
818 will be NULL.
819
820 THE CALLING FUNCTION IS RESPONSIBLE FOR DELETING THE {\it wxDbColInf} MEMORY WHEN IT IS
821 FINISHED WITH IT.
822
823 \normalbox{ALL column bindings associated with this wxDb instance are unbound
824 by this function, including those used by any wxDbTable instances that use
825 this wxDb instance. This function should use its own wxDb instance
826 to avoid undesired unbinding of columns.}
827
828 \wxheading{See also}
829
830 \helpref{wxDbColInf}{wxdbcolinf}
831
832 \wxheading{Example}
833
834 \begin{verbatim}
835 wxChar *tableList[] = {"PARTS", 0};
836 wxDbColInf *colInf = pDb->GetColumns(tableList);
837 if (colInf)
838 {
839 // Use the column inf
840 .......
841 // Destroy the memory
842 delete [] colInf;
843 }
844 \end{verbatim}
845
846
847 \membersection{wxDb::GetData}\label{wxdbgetdata}
848
849 \func{bool}{GetData}{\param{UWORD}{ colNo}, \param{SWORD}{ cType},
850 \param{PTR}{ pData}, \param{SDWORD}{ maxLen}, \param{SDWORD FAR *}{ cbReturned} }
851
852 Used to retrieve result set data without binding column values to memory
853 variables (i.e. not using a wxDbTable instance to access table data).
854
855 \wxheading{Parameters}
856
857 \docparam{colNo}{Ordinal number of the desired column in the result set to be
858 returned.}
859 \docparam{cType}{The C data type that is to be returned. See a partial list
860 in \helpref{wxDbTable::SetColDefs}{wxdbtablesetcoldefs}}
861 \docparam{pData}{Memory buffer which will hold the data returned by the call
862 to this function.}
863 \docparam{maxLen}{Maximum size of the buffer {\it 'pData'} in characters.
864 NOTE: Not UNICODE safe. If this is a numeric field, a value of 0 may be
865 passed for this parameter, as the API knows the size of the expected return
866 value.}
867 \docparam{cbReturned}{Pointer to the buffer containing the length of the
868 actual data returned. If this value comes back as SQL\_NULL\_DATA, then the
869 \helpref{wxDb::GetData}{wxdbgetdata} call has failed.}
870
871 \wxheading{See also}
872
873 \helpref{wxDb::GetNext}{wxdbgetnext}, \helpref{wxDb::ExecSql}{wxdbexecsql}
874
875 \wxheading{Example}
876
877 \begin{verbatim}
878 SDWORD cb;
879 ULONG reqQty;
880 wxString sqlStmt;
881 sqlStmt = "SELECT SUM(REQUIRED_QTY - PICKED_QTY) FROM ORDER_TABLE WHERE \
882 PART_RECID = 1450 AND REQUIRED_QTY > PICKED_QTY";
883
884 // Perform the query
885 if (!pDb->ExecSql(sqlStmt.c_str()))
886 {
887 // ERROR
888 return(0);
889 }
890
891 // Request the first row of the result set
892 if (!pDb->GetNext())
893 {
894 // ERROR
895 return(0);
896 }
897
898 // Read column #1 of the row returned by the call to ::GetNext()
899 // and return the value in 'reqQty'
900 if (!pDb->GetData(1, SQL_C_ULONG, &reqQty, 0, &cb))
901 {
902 // ERROR
903 return(0);
904 }
905
906 // Check for a NULL result
907 if (cb == SQL_NULL_DATA)
908 return(0);
909 \end{verbatim}
910
911 \wxheading{Remarks}
912
913 When requesting multiple columns to be returned from the result set (for example, the SQL query
914 requested 3 columns be returned), the calls to this function must request the columns in ordinal
915 sequence (1,2,3 or 1,3 or 2,3).
916
917 \membersection{wxDb::GetDatabaseName}\label{wxdbgetdatabasename}
918
919 \func{const wxChar *}{GetDatabaseName}{\void}
920
921 Returns the name of the database engine.
922
923 \membersection{wxDb::GetDatasourceName}\label{wxdbgetdatasourcename}
924
925 \func{const wxString \&}{GetDatasourceName}{\void}
926
927 Returns the ODBC datasource name.
928
929 \membersection{wxDb::GetHDBC}\label{wxdbgethdbc}
930
931 \func{HDBC}{GetHDBC}{\void}
932
933 Returns the ODBC handle to the database connection.
934
935 \membersection{wxDb::GetHENV}\label{wxdbgethenv}
936
937 \func{HENV}{GetHENV}{\void}
938
939 Returns the ODBC environment handle.
940
941 \membersection{wxDb::GetHSTMT}\label{wxdbgethstmt}
942
943 \func{HSTMT}{GetHSTMT}{\void}
944
945 Returns the ODBC statement handle associated with this database connection.
946
947 \membersection{wxDb::GetKeyFields}\label{wxdbgetkeyfields}
948
949 \func{int }{GetKeyFields}{\param{const wxString \&}{tableName}, \param{wxDbColInf *}{colInf}, \param{UWORD }{nocols}}
950
951 Used to determine which columns are members of primary or non-primary indexes on the specified table. If a column is a member of a foreign key for some other table, that information is detected also.
952
953 This function is primarily for use by the \helpref{wxDb::GetColumns}{wxdbgetcolumns} function, but may be called if desired from the client application.
954
955 \wxheading{Parameters}
956
957 \docparam{tableName}{Name of the table for which the columns will be evaluated as to their inclusion in any indexes.}
958 \docparam{colInf}{Data structure containing the column definitions (obtained with \helpref{wxDb::GetColumns}{wxdbgetcolumns}). This function populates the PkCol, PkTableName, and FkTableName members of the colInf structure.}
959 \docparam{nocols}{Number of columns defined in the instance of colInf.}
960
961 \wxheading{Return value}
962
963 Currently always returns TRUE.
964
965 \wxheading{See also}
966
967 \helpref{wxDbColInf}{wxdbcolinf}, \helpref{wxDb::GetColumns}{wxdbgetcolumns}
968
969 \membersection{wxDb::GetNext}\label{wxdbgetnext}
970
971 \func{bool}{GetNext}{\void}
972
973 Called after executing a query, this function requests the next row
974 in the result set after the current position of the cursor.
975
976 \wxheading{See also}
977
978 \helpref{wxDb::ExecSql}{wxdbexecsql}, \helpref{wxDb::GetData}{wxdbgetdata}
979
980 \membersection{wxDb::GetNextError}\label{wxdbgetnexterror}
981
982 \func{bool}{GetNextError}{\param{HENV}{ aHenv},
983 \param{HDBC}{ aHdbc = SQL\_NULL\_HDBC}, \param{HSTMT}{ aHstmt = SQL\_NULL\_HSTMT}}
984
985 \wxheading{Parameters}
986
987 \docparam{aHenv}{A handle to the ODBC environment.}
988 \docparam{aHdbc}{{\it OPTIONAL.} A handle to the ODBC connection. Pass this
989 in if the ODBC function call that erred out required a hdbc or hstmt argument.}
990 \docparam{AHstmt}{{\it OPTIONAL.}A handle to the ODBC statement being executed
991 against. Pass this in if the ODBC function call that erred out requires a
992 hstmt argument.}
993
994 \wxheading{Example}
995
996 \begin{verbatim}
997 if (SQLExecDirect(hstmt, (UCHAR FAR *) pSqlStmt, SQL_NTS) != SQL_SUCCESS)
998 {
999 // Display all ODBC errors for this stmt
1000 return(db.DispAllErrors(db.henv, db.hdbc, hstmt));
1001 }
1002 \end{verbatim}
1003
1004 \wxheading{See also}
1005
1006 \helpref{wxDb::DispNextError}{wxdbdispnexterror},
1007 \helpref{wxDb::DispAllErrors}{wxdbdispallerrors}
1008
1009
1010 \membersection{wxDb::GetPassword}\label{wxdbgetpassword}
1011
1012 \func{const wxString \&}{GetPassword}{\void}
1013
1014 Returns the password used to establish this connection to the datasource.
1015
1016
1017 \membersection{wxDb::GetTableCount}\label{wxdbgettablecount}
1018
1019 \func{int }{GetTableCount}{\void}
1020
1021 Returns the number of wxDbTable() instances currently using this datasource
1022 connection.
1023
1024
1025 \membersection{wxDb::GetUsername}\label{wxdbgetusername}
1026
1027 \func{const wxString \&}{GetUsername}{\void}
1028
1029 Returns the user name (uid) used to establish this connection to the
1030 datasource.
1031
1032
1033 \membersection{wxDb::Grant}\label{wxdbgrant}
1034
1035 \func{bool}{Grant}{\param{int }{privileges}, \param{const wxString \&}{tableName},
1036 \param{const wxString \&}{userList = "PUBLIC"}}
1037
1038 Use this member function to GRANT privileges to users for accessing tables in
1039 the datasource.
1040
1041 \wxheading{Parameters}
1042
1043 \docparam{privileges}{Use this argument to select which privileges you want to
1044 grant. Pass DB\_GRANT\_ALL to grant all privileges. To grant individual
1045 privileges pass one or more of the following OR'd together:}
1046
1047 \begin{verbatim}
1048 DB_GRANT_SELECT = 1
1049 DB_GRANT_INSERT = 2
1050 DB_GRANT_UPDATE = 4
1051 DB_GRANT_DELETE = 8
1052 DB_GRANT_ALL = DB_GRANT_SELECT | DB_GRANT_INSERT |
1053 DB_GRANT_UPDATE | DB_GRANT_DELETE
1054 \end{verbatim}
1055
1056 \docparam{tableName}{The name of the table you wish to grant privileges on.}
1057 \docparam{userList}{{\it OPTIONAL.} A comma delimited list of users to grant the privileges to. If this argument is not passed in, the privileges will be given to the general PUBLIC.}
1058
1059 \wxheading{Remarks}
1060
1061 Some databases require user names to be specified in all capital letters (i.e. Oracle). This function does not automatically capitalize the user names passed in the comma-separated list. This is the responsibility of the calling routine.
1062
1063 The currently logged in user must have sufficient grantor privileges for this
1064 function to be able to successfully grant the indicated privileges.
1065
1066 \wxheading{Example}
1067
1068 \begin{verbatim}
1069 db.Grant(DB_GRANT_SELECT | DB_GRANT_INSERT, "PARTS", "mary, sue");
1070 \end{verbatim}
1071
1072
1073 \membersection{wxDb::IsFwdOnlyCursors}\label{wxdbisfwdonlycursors}
1074
1075 \func{bool}{IsFwdOnlyCursors}{\void}
1076
1077 This setting indicates whether this database connection was created
1078 as being capable of using only forward scrolling cursors.
1079
1080 This function does NOT indicate if the ODBC driver or datasource supports
1081 backward scrolling cursors. There is no standard way of detecting if the
1082 driver or datasource can support backward scrolling cursors.
1083
1084 If a wxDb instance was created as being capable of only forward scrolling
1085 cursors, then even if the datasource and ODBC driver support backward
1086 scrolling cursors, tables using this database connection would only be able
1087 to use forward scrolling cursors.
1088
1089 The default setting of whether a wxDb connection to a database allows
1090 forward-only or also backward scrolling cursors is defined in setup.h by the
1091 value of wxODBC\_FWD\_ONLY\_CURSORS. This default setting can be overridden
1092 when the wxDb connection is initially created (see
1093 \helpref{wxDb constructor}{wxdbconstr} and \helpref{wxDbGetConnection}{wxdbfunctions}).
1094
1095 \wxheading{Return value}
1096
1097 Returns TRUE if this datasource connection is defined as using only forward
1098 scrolling cursors, or FALSE if the connection is defined as being allowed to
1099 use backward scrolling cursors and their associated functions (see note above).
1100
1101 \wxheading{Remarks}
1102
1103 Added as of wxWindows v2.4 release, this function is a renamed version of
1104 wxDb::FwdOnlyCursors() to match the normal wxWindows naming conventions for
1105 class member functions.
1106
1107 This function is not available in versions prior to v2.4. You should
1108 use \helpref{wxDb::FwdOnlyCursors}{wxdbfwdonlycursors} for wxWindows
1109 versions prior to 2.4.
1110
1111 \wxheading{See also}
1112
1113 \helpref{wxDb constructor}{wxdbconstr}, \helpref{wxDbGetConnection}{wxdbfunctions}
1114
1115
1116 \membersection{wxDb::IsOpen}\label{wxdbisopen}
1117
1118 \func{bool}{IsOpen}{\void}
1119
1120 Indicates whether the database connection to the datasource is currently
1121 opened.
1122
1123 \wxheading{Remarks}
1124
1125 This function may indicate that the database connection is open, even if
1126 the call to \helpref{wxDb::Open}{wxdbopen} may have failed to fully
1127 initialize the connection correctly. The connection to the database
1128 {\it is} open and can be used via the direct SQL commands, if this
1129 function returns TRUE. Other functions which depend on the
1130 \helpref{wxDb::Open}{wxdbopen} to have completed correctly may not function
1131 as expected. The return result from \helpref{wxDb::Open}{wxdbopen} is the
1132 only way to know if complete initialization of this wxDb connection was
1133 successful or not. See \helpref{wxDb::Open}{wxdbopen} for more details on
1134 partial failures to open a connection instance.
1135
1136
1137 \membersection{wxDb::LogError}\label{wxdblogerror}
1138
1139 \func{void}{LogError}{\param{const wxString \&}{errMsg} \param{const wxString \&}{SQLState=""}}
1140
1141 \docparam{errMsg}{Free-form text to display describing the error/text to be logged.}
1142 \docparam{SQLState}{{\it OPTIONAL.} Native SQL state error. Default is 0.}
1143
1144 \wxheading{Remarks}
1145
1146 Calling this function will enter a log message in the error list maintained
1147 for the database connection. This log message is free form and can be
1148 anything the programmer wants to enter in the error list.
1149
1150 If SQL logging is turned on, the call to this function will also log the
1151 text into the SQL log file.
1152
1153 \wxheading{See also}
1154
1155 \helpref{wxDb::WriteSqlLog}{wxdbwritesqllog}
1156
1157
1158 \membersection{wxDb::ModifyColumn}\label{wxdbmodifycolumn}
1159
1160 \func{void}{ModifyColumn}{\param{const wxString \&}{tableName} \param{const wxString \&}{ColumnName}
1161 \param{int }{dataType} \param{ULONG }{columnLength=0} \param{const wxString \&}{optionalParam=""}}
1162
1163 Used to change certain properties of a column such as the length, or whether a column
1164 allows NULLs or not.
1165
1166 \docparam{tableName}{Name of the table that the column to be modified is in.}
1167 \docparam{columnName}{Name of the column to be modified. NOTE: Name of column cannot
1168 be changed with this function.}
1169 \docparam{dataType}{Any one of DB\_DATA\_TYPE\_VARCHAR, DB\_DATA\_TYPE\_INTEGER,
1170 DB\_DATA\_TYPE\_FLOAT, DB\_DATA\_TYPE\_DATE.}
1171 \docparam{columnLength}{New size of the column. Valid only for DB\_DATA\_TYPE\_VARCHAR
1172 dataType fields. Default is 0.}
1173 \docparam{optionalParam}{Default is "".}
1174
1175 \wxheading{Remarks}
1176
1177 Cannot be used to modify the precision of a numeric column, therefore 'columnLength'
1178 is ignored unless the dataType is DB\_DATA\_TYPE\_VARCHAR.
1179
1180 Some datasources do not allow certain properties of a column to be changed if any rows
1181 currently have data stored in that column. Those datasources that do allow columns
1182 to be changed with data in the rows many handle truncation and/or expansion in
1183 different ways. Please refer to the reference material for the datasource being
1184 used for behavioral descriptions.
1185
1186 \wxheading{Example}
1187
1188 \begin{verbatim}
1189 ok = pDb->ModifyColumn("CONTACTS", "ADDRESS2",
1190 DB_, colDefs[j].SzDataObj,
1191 wxT("NOT NULL"));
1192 \end{verbatim}
1193
1194
1195 \membersection{wxDb::Open}\label{wxdbopen}
1196
1197 \func{bool}{Open}{\param{const wxString \&}{Dsn}, \param{const wxString \&}{Uid},
1198 \param{const wxString \&}{AuthStr}}
1199
1200 \func{bool}{Open}{\param{wxDb *}{copyDb}}
1201
1202 Opens a connection to the datasource, sets certain behaviors of the datasource
1203 to confirm to the accepted behaviors (e.g. cursor position maintained on
1204 commits), and queries the datasource for its representations of the basic
1205 datatypes to determine the form in which the data going to/from columns in
1206 the data tables are to be handled.
1207
1208 The second form of this function, which accepts a "wxDb *" as a parameter,
1209 can be used to avoid the overhead (execution time, database load, network
1210 traffic) which are needed to determine the data types and representations
1211 of data that are necessary for cross-datasource support by these classes.
1212
1213 Normally the first form of the wxDb::Open() function will open the connection
1214 and then send a series of queries to the datasource asking it for its
1215 representation of data types, and all the features it supports. If one
1216 connection to the datasource has already been made previously, the information
1217 gathered when that connection was created can just be copied to any new
1218 connections to the same datasource by passing a pointer to the first
1219 connection in as a parameter to the wxDb::Open() function. Note that this
1220 new connection created from the first connections information will use the
1221 same Dsn/Uid/AuthStr as the first connection used.
1222
1223 \wxheading{Parameters}
1224
1225 \docparam{Dsn}{datasource name. The name of the ODBC datasource as
1226 assigned when the datasource is initially set up through the ODBC data
1227 source manager.}
1228 \docparam{Uid}{User ID. The name (ID) of the user you wish to connect as
1229 to the datasource. The user name (ID) determines what objects you
1230 have access to in the datasource and what datasource privileges you have.
1231 Privileges include being able to create new objects, update objects, delete
1232 objects and so on. Users and privileges are normally administered by the
1233 database administrator.}
1234 \docparam{AuthStr}{The password associated with the Uid.}
1235 \docparam{copyDb}{Already completely configured and opened datasource connection
1236 from which all Dsn, Uid, AuthStr, and data typing information is to be copied
1237 from for use by this datasource connection.}
1238
1239 \wxheading{Remarks}
1240
1241 After a wxDb instance is created, it must then be opened. When opening a
1242 datasource, there must be three pieces of information passed. The data
1243 source name, user name (ID) and the password for the user. No database
1244 activity on the datasource can be performed until the connection is opened.
1245 This is normally done at program startup and the datasource remains
1246 open for the duration of the program/module run.
1247
1248 It is possible to have connections to multiple datasources open at the same
1249 time to support distributed database connections by having separate instances
1250 of wxDb objects that use either the same or different Dsn/Uid/AuthStr settings.
1251
1252 If this function returns a value of FALSE, it does not necessarily mean that
1253 the connection to the datasource was not opened. It may mean that some
1254 portion of the initialization of the connection failed (such as a datatype not
1255 being able to be determined how the datasource represents it). To determine
1256 if the connection to the database failed, use the \helpref{wxDb::IsOpen}{wxdbisopen}
1257 function after receiving a FALSE result back from this function to determine if
1258 the connection was opened or not. If this function returns FALSE, but \helpref{wxDb::IsOpen}{wxdbisopen}
1259 returns TRUE, then direct SQL commands may be passed to the database
1260 connection and can be successfully executed, but use of the datatypes (such as
1261 by a wxDbTable instance) that are normally determined during open will not be
1262 possible.
1263
1264 \normalbox{The {\it Dsn}, {\it Uid}, and {\it AuthStr} string pointers that are passed in
1265 are copied. NOT the strings themselves, only the pointers. The calling routine
1266 must maintain the memory for these three strings for the life of the wxDb instance.}
1267
1268 \wxheading{Example}
1269
1270 \begin{verbatim}
1271 wxDb sampleDB(DbConnectInf.GetHenv());
1272 if (!sampleDB.Open("Oracle 7.1 HP/UX", "gtasker", "myPassword"))
1273 {
1274 if (sampleDb.IsOpen())
1275 {
1276 // Connection is open, but the initialization of
1277 // datatypes and parameter settings failed
1278 }
1279 else
1280 {
1281 // Error opening datasource
1282 }
1283 }
1284 \end{verbatim}
1285
1286
1287 \membersection{wxDb::RollbackTrans}\label{wxdbrollbacktrans}
1288
1289 \func{bool}{RollbackTrans}{\void}
1290
1291 Function to "undo" changes made to the database. After an insert/update/delete, the operation may be "undone" by issuing this command any time before a \helpref{wxDb::CommitTrans}{wxdbcommittrans} is called on the database connection.
1292
1293 \wxheading{Remarks}
1294
1295 Transactions begin implicitly as soon as you make a change to the database. The
1296 transaction continues until either a commit or rollback is executed. Calling
1297 wxDb::RollbackTrans() will result in ALL changes done using this database
1298 connection that have not already been committed to be "undone" back to the last
1299 commit/rollback that was successfully executed.
1300
1301 \normalbox{Calling this member function rolls back ALL open (uncommitted)
1302 transactions on this ODBC connection, including all wxDbTable instances that
1303 use this connection.}
1304
1305 \wxheading{See also}
1306
1307 \helpref{wxDb::CommitTrans}{wxdbcommittrans} for a special note on cursors
1308
1309
1310 \membersection{wxDb::SetDebugErrorMessages}\label{wxdbsetdebugerrormessages}
1311
1312 \func{void}{SetDebugErrorMessages}{\param{bool }{state}}
1313
1314 \docparam{state}{Either TRUE (debug messages are logged) or FALSE (debug
1315 messages are not logged).}
1316
1317 \wxheading{Remarks}
1318
1319 Turns on/off debug error messages from the ODBC class library. When
1320 this function is passed TRUE, errors are reported to the user/logged automatically
1321 in a text or pop-up dialog when an ODBC error occurs. When passed FALSE,
1322 errors are silently handled.
1323
1324 When compiled in release mode (FINAL=1), this setting has no affect.
1325
1326 \wxheading{See also}
1327
1328 \helpref{wxDb constructor}{wxdbconstr}
1329
1330
1331 \membersection{wxDb::SetSqlLogging}\label{wxdbsetsqllogging}
1332
1333 \func{bool}{SetSqlLogging}{\param{wxDbSqlLogState}{ state}, \param{const wxString \&}{filename = SQL\_LOG\_FILENAME}, \param{bool }{ append = FALSE}}
1334
1335 \wxheading{Parameters}
1336
1337 \docparam{state}{Either sqlLogOFF or sqlLogON (see \helpref{enum wxDbSqlLogState}{wxdbcolfor}). Turns logging of SQL commands sent to the datasource OFF or ON.}
1338 \docparam{filename}{{\it OPTIONAL}. Name of the file to which the log text is to be written. Default is SQL\_LOG\_FILENAME.}
1339 \docparam{append}{{\it OPTIONAL}. Whether the file is appended to or overwritten. Default is FALSE.}
1340
1341 \wxheading{Remarks}
1342
1343 When called with {\it sqlLogON}, all commands sent to the datasource engine are logged to the file specified by {\it filename}. Logging is done by embedded \helpref{wxDb::WriteSqlLog}{wxdbwritesqllog} calls in the database member functions, or may be manually logged by adding calls to \helpref{wxDb::WriteSqlLog}{wxdbwritesqllog} in your own source code.
1344
1345 When called with {\it sqlLogOFF}, the logging file is closed, and any calls to \helpref{wxDb::WriteSqlLog}{wxdbwritesqllog} are ignored.
1346
1347
1348 \membersection{wxDb::SQLColumnName}\label{wxdbsqlcolumnname}
1349
1350 \func{const wxString}{SQLColumnName}{\param{const char *}{ colName}}
1351
1352 Returns the column name in a form ready for use in SQL statements.
1353 In most cases, the column name is returned verbatim. But some databases
1354 (e.g. MS Access, SQL Server, MSDE) allow for spaces in column names, which
1355 must be specially quoted. For example, if the datasource allows spaces
1356 in the column name, the returned string will have the correct enclosing
1357 marks around the name to allow it to be properly included in a SQL statement
1358 for the DBMS that is currently connected to with this connection.
1359
1360 \wxheading{Parameters}
1361
1362 \docparam{colName}{Native name of the column in the table that is to be
1363 evaluated to determine if any special quoting marks needed to be added to it
1364 before including the column name in a SQL statement}
1365
1366 \wxheading{See also}
1367
1368 \helpref{wxDb::SQLTableName}{wxdbsqltablename}
1369
1370
1371 \membersection{wxDb::SQLTableName}\label{wxdbsqltablename}
1372
1373 \func{const wxString}{SQLTableName}{\param{const char *}{ tableName}}
1374
1375 Returns the table name in a form ready for use in SQL statements.
1376 In most cases, the table name is returned verbatim. But some databases
1377 (e.g. MS Access, SQL Server, MSDE) allow for spaces in table names, which
1378 must be specially quoted. For example, if the datasource allows spaces
1379 in the table name, the returned string will have the correct enclosing
1380 marks around the name to allow it to be properly included in a SQL statement
1381 for the data source that is currently connected to with this connection.
1382
1383 \wxheading{Parameters}
1384
1385 \docparam{tableName}{Native name of the table that is to be evaluated to
1386 determine if any special quoting marks needed to be added to it
1387 before including the table name in a SQL statement}
1388
1389 \wxheading{See also}
1390
1391 \helpref{wxDb::SQLColumnName}{wxdbsqlcolumnname}
1392
1393
1394 \membersection{wxDb::TableExists}\label{wxdbtableexists}
1395
1396 \func{bool}{TableExists}{\param{const wxString \&}{tableName}, \param{const wxChar *}{userID=NULL}, \param{const wxString \&}{path=""}}
1397
1398 Checks the ODBC datasource for the existence of a table. If a {\it userID}
1399 is specified, then the table must be accessible by that user (user must have
1400 at least minimal privileges to the table).
1401
1402 \wxheading{Parameters}
1403
1404 \docparam{tableName}{Name of the table to check for the existence of.}
1405 \docparam{userID}{Owner of the table (also referred to as schema). Specify a userID when the datasource you are connected
1406 to allows multiple unique tables with the same name to be owned by different users. {\it userID}
1407 is evaluated as follows:}
1408
1409 \begin{verbatim}
1410 userID == NULL ... UserID is ignored (DEFAULT)
1411 userID == "" ... UserID set equal to 'this->uid'
1412 userID != "" ... UserID set equal to 'userID'
1413 \end{verbatim}
1414
1415 \wxheading{Remarks}
1416
1417 {\it tableName} may refer to a table, view, alias or synonym.
1418
1419 This function does not indicate whether or not the user has privileges to query or perform other functions on the table. Use the \helpref{wxDb::TablePrivileges}{wxdbtableprivileges} to determine if the user has sufficient privileges or not.
1420
1421 \wxheading{See also}
1422
1423 \helpref{wxDb::TablePrivileges}{wxdbtableprivileges}
1424
1425
1426 \membersection{wxDb::TablePrivileges}\label{wxdbtableprivileges}
1427
1428 \func{bool}{TablePrivileges}{\param{const wxString \&}{tableName}, \param{const wxString \&}{priv},
1429 \param{const wxChar *}{userID=NULL}, \param{const wxChar *}{schema=NULL},
1430 \param{const wxString \&}{path=""}}
1431
1432 Checks the ODBC datasource for the existence of a table. If a {\it userID}
1433 is specified, then the table must be accessible by that user (user must have
1434 at least minimal privileges to the table).
1435
1436 \wxheading{Parameters}
1437
1438 \docparam{tableName}{Name of the table on which to check privileges.
1439 {\it tableName} may refer to a table, view, alias or synonym.}
1440 \docparam{priv}{The table privilege being evaluated. May be one of the
1441 following (or a datasource specific privilege):}
1442 \begin{verbatim}
1443 SELECT : The connected user is permitted to retrieve data for
1444 one or more columns of the table.
1445
1446 INSERT : The connected user is permitted to insert new rows
1447 containing data for one or more columns into the
1448 table.
1449
1450 UPDATE : The connected user is permitted to update the data in
1451 one or more columns of the table.
1452
1453 DELETE : The connected user is permitted to delete rows of
1454 data from the table.
1455
1456 REFERENCES : Is the connected user permitted to refer to one or
1457 more columns of the table within a constraint (for
1458 example, a unique, referential, or table check
1459 constraint).
1460 \end{verbatim}
1461 \docparam{userID}{{\it OPTIONAL.} User for which to determine if the privilege
1462 specified to be checked is granted or not. Default is "".
1463 {\it userID} is evaluated as follows:}
1464 \begin{verbatim}
1465 userID == NULL ... NOT ALLOWED!
1466 userID == "" ... UserID set equal to 'this->uid'
1467 userID != "" ... UserID set equal to 'userID'
1468 \end{verbatim}
1469
1470 \docparam{schema}{{\it OPTIONAL.} Owner of the table. Specify a userID when the datasource
1471 you are connected to allows multiple unique tables with the same name to be
1472 owned by different users. Specifying the table owner makes determination of the
1473 users privileges MUCH faster. Default is NULL. {\it userID} is evaluated as follows:}
1474 \begin{verbatim}
1475 schema == NULL ... Any owner (DEFAULT)
1476 schema == "" ... Owned by 'this->uid'
1477 schema != "" ... Owned by userID specified in 'schema'
1478 \end{verbatim}
1479
1480 \docparam{path}{{\it OPTIONAL.} Path to the table. Default is "".
1481 Currently unused.}
1482
1483 \wxheading{Remarks}
1484
1485 The scope of privilege allowed to the connected user by a given table
1486 privilege is datasource dependent.
1487
1488 For example, the privilege UPDATE might allow the connected user to update
1489 all columns in a table on one datasource, but only those columns for
1490 which the grantor (the user that granted the connected user) has the UPDATE
1491 privilege on another datasource.
1492
1493 Looking up a user's privileges to a table can be time consuming depending on the
1494 datasource and ODBC driver. This time can be minimized by passing a {\it schema}
1495 as a parameter. With some datasources/drivers, the difference can be several
1496 seconds of time difference.
1497
1498
1499 \membersection{wxDb::TranslateSqlState}\label{wxdbtranslatesqlstate}
1500
1501 \func{int }{TranslateSqlState}{\param{const wxString \&}{SQLState}}
1502
1503 Converts an ODBC sqlstate to an internal error code.
1504
1505 \wxheading{Parameters}
1506
1507 \docparam{SQLState}{State to be converted.}
1508
1509 \wxheading{Return value}
1510
1511 Returns the internal class DB\_ERR code. See \helpref{wxDb::DB\_STATUS}{wxdb} definition.
1512
1513
1514 \membersection{wxDb::WriteSqlLog}\label{wxdbwritesqllog}
1515
1516 \func{bool}{WriteSqlLog}{\param{const wxString \&}{logMsg}}
1517
1518 \wxheading{Parameters}
1519
1520 \docparam{logMsg}{Free form string to be written to the log file.}
1521
1522 \wxheading{Remarks}
1523
1524 Very useful debugging tool that may be turned on/off during run time (see
1525 (see \helpref{wxDb::SetSqlLogging}{wxdbsetsqllogging} for details on
1526 turning logging on/off). The passed in string {\it logMsg} will be written to
1527 a log file if SQL logging is turned on.
1528
1529 \wxheading{Return value}
1530
1531 If SQL logging is off when a call to WriteSqlLog() is made, or there is a
1532 failure to write the log message to the log file, the function returns
1533 FALSE without performing the requested log, otherwise TRUE is returned.
1534
1535 \wxheading{See also}
1536
1537 \helpref{wxDb::SetSqlLogging}{wxdbsetsqllogging}
1538
1539
1540 \section{\class{wxDbColDataPtr}}\label{wxdbcoldataptr}
1541
1542 Pointer to dynamic column definitions for use with a wxDbTable instance.
1543 Currently there are no member functions for this class.
1544
1545 \begin{verbatim}
1546 void *PtrDataObj;
1547 int SzDataObj;
1548 SWORD SqlCtype;
1549 \end{verbatim}
1550
1551
1552 \section{\class{wxDbColDef}}\label{wxdbcoldef}
1553
1554 This class is used to hold information about the columns bound to an
1555 instance of a wxDbTable object.
1556
1557 Each instance of this class describes one column in the wxDbTable
1558 object. When calling the \helpref{wxDb constructor}{wxdbconstr}, a
1559 parameter passed in indicates the number of columns that will be defined for
1560 the wxDbTable object. The constructor uses this information to allocate
1561 adequate memory for all of the column descriptions in your wxDbTable object.
1562 Private member wxDbTable::colDefs is a pointer to this chunk of memory
1563 maintained by the wxDbTable class (and can be retrieved using the
1564 \helpref{wxDbTable::GetColDefs}{wxdbtablegetcoldefs} function).
1565 To access the nth column definition of your wxDbTable object, just reference
1566 wxDbColDefs element [n - 1].
1567
1568 Typically, \helpref{wxDbTable::SetColDefs}{wxdbtablesetcoldefs} is used to
1569 populate an array of these data structures for the wxDbTable instance.
1570
1571 Currently there are no accessor functions for this class, so all members are
1572 public.
1573
1574 \begin{verbatim}
1575 wxChar ColName[DB_MAX_COLUMN_NAME_LEN+1]; // Column Name
1576 int DbDataType; - Logical Data Type;
1577 e.g. DB_DATA_TYPE_INTEGER
1578 SWORD SqlCtype; - C data type; e.g. SQL_C_LONG
1579 void *PtrDataObj; - Address of the data object
1580 int SzDataObj; - Size, in bytes, of the data object
1581 bool KeyField; - Is column part of the PRIMARY KEY for the
1582 table? -- Date fields should NOT be
1583 KeyFields
1584 bool Updateable; - Column is updateable?
1585 bool InsertAllowed; - Column included in INSERT statements?
1586 bool DerivedCol; - Column is a derived value?
1587 SDWORD CbValue; - !!!Internal use only!!!
1588 bool Null; - NOT FULLY IMPLEMENTED
1589 Allows NULL values in Inserts and Updates
1590 \end{verbatim}
1591
1592 \wxheading{See also}
1593
1594 \helpref{wxDbTable::GetColDefs}{wxdbtablegetcoldefs}, \helpref{wxDb constructor}{wxdbconstr}
1595
1596
1597 \membersection{wxDbColDef::Initialize}\label{wxdbcoldefinitialize}
1598
1599 Simply initializes all member variables to a cleared state. Called by
1600 the constructor automatically.
1601
1602
1603 \section{\class{wxDbColFor}}\label{wxdbcolfor}
1604
1605 Beginning support for handling international formatting specifically on dates
1606 and floats.
1607
1608 \begin{verbatim}
1609 wxString s_Field; // Formated String for Output
1610 wxString s_Format[7]; // Formated Objects - TIMESTAMP has
1611 the biggest (7)
1612 wxString s_Amount[7]; // Formated Objects - amount of
1613 things that can be formatted
1614 int i_Amount[7]; // Formated Objects -
1615 TT MM YYYY HH MM SS m
1616 int i_Nation; // 0 = timestamp
1617 1 = EU
1618 2 = UK
1619 3 = International
1620 4 = US
1621 int i_dbDataType; // conversion of the 'sqlDataType'
1622 to the generic data type used by
1623 these classes
1624 SWORD i_sqlDataType;
1625 \end{verbatim}
1626
1627 The constructor for this class initializes all the values to zero or NULL.
1628
1629 The destructor does nothing at this time.
1630
1631 Only one function is provided with this class currently:
1632
1633
1634 \membersection{wxDbColFor::Format}\label{wxdbcolforformat}
1635
1636 \func{int }{Format}{\param{int }{Nation}, \param{int }{dbDataType},
1637 \param{SWORD }{sqlDataType}, \param{short }{columnSize},
1638 \param{short }{decimalDigits}}\label{wxdbcolforformat}
1639
1640 Work in progress, and should be inter-related with wxLocale eventually.
1641
1642
1643 \membersection{wxDbColFor::Initialize}\label{wxdbcolforinitialize}
1644
1645 Simply initializes all member variables to a cleared state. Called by
1646 the constructor automatically.
1647
1648
1649 \section{\class{wxDbColInf}}\label{wxdbcolinf}
1650
1651 Used with the \helpref{wxDb::GetColumns}{wxdbgetcolumns} functions for obtaining all retrievable information about a column's definition.
1652
1653 \begin{verbatim}
1654 wxChar catalog[128+1];
1655 wxChar schema[128+1];
1656 wxChar tableName[DB_MAX_TABLE_NAME_LEN+1];
1657 wxChar colName[DB_MAX_COLUMN_NAME_LEN+1];
1658 SWORD sqlDataType;
1659 wxChar typeName[128+1];
1660 SWORD columnSize;
1661 SWORD bufferLength;
1662 short decimalDigits;
1663 short numPrecRadix;
1664 short nullable;
1665 wxChar remarks[254+1];
1666 int dbDataType; // conversion of the 'sqlDataType'
1667 // to the generic data type used by
1668 // these classes
1669 int PkCol; // Primary key column
1670 0 = No
1671 1 = First Key
1672 2 = Second Key, etc...
1673 wxChar PkTableName[DB_MAX_TABLE_NAME_LEN+1];
1674 // Tables that use this PKey as a FKey
1675 int FkCol; // Foreign key column
1676 0 = No
1677 1 = First Key
1678 2 = Second Key, etc...
1679 wxChar FkTableName[DB_MAX_TABLE_NAME_LEN+1];
1680 // Foreign key table name
1681 wxDbColFor *pColFor; // How should this column be formatted
1682 \end{verbatim}
1683
1684 The constructor for this class initializes all the values to zero, "", or NULL.
1685
1686 The destructor for this class takes care of deleting the pColFor member if
1687 it is non-NULL.
1688
1689
1690 \membersection{wxDbColInf::Initialize}\label{wxdbcolinfinitialize}
1691
1692 Simply initializes all member variables to a cleared state. Called by
1693 the constructor automatically.
1694
1695
1696
1697 \section{\class{wxDbConnectInf}}\label{wxdbconnectinf}
1698
1699 This class is used for holding the data necessary for connecting to the ODBC
1700 datasource. That information includes: SQL environment handle, datasource
1701 name, user ID, password and default directory path (used with dBase). Other
1702 optional fields held in this class are and file type, both for future
1703 functions planned to be added for creating/manipulating datasource definitions.
1704
1705 \func{}{wxDbConnectInf}{\void}
1706
1707 Default constructor.
1708
1709 \func{}{wxDb}{\param{HENV }{henv}, \param{const wxString \&}{dsn},
1710 \param{const wxString \&}{userID=""}, \param{const wxString \&}{password},
1711 \param{const wxString \&}{defaultDir=""}, \param{const wxString \&}{description=""},
1712 \param{const wxString \&}{fileType=""}}
1713
1714 Constructor which allows initial settings of all the classes member variables.
1715
1716 See the special not below on the henv parameter for forcing this constructor
1717 to create a SQL environment handle automatically, rather than needing to pass
1718 one in to the function.
1719
1720 \wxheading{Parameters}
1721
1722 \docparam{henv}{Environment handle used for this connection. See
1723 \helpref{wxDConnectInf::AllocHenv}{wxdbconnectinfallochenv} for how to create
1724 an SQL environment handle. NOTE: Passing in a NULL for this parameter will
1725 inform the constructor that it should create its own SQL environment handle.
1726 If NULL is passed for this parameter, the constructor will call
1727 \helpref{wxDConnectInf::AllocHenv}{wxdbconnectinfallochenv} internally. A
1728 flag is set internally also to indicate that the HENV was created by the
1729 constructor so that when the default class destructor is called, the
1730 destructor will call \helpref{wxDConnectInf::FreeHenv}{wxdbconnectinffreehenv}
1731 to free the environment handle automatically.}
1732 \docparam{dsn}{Name of the datasource to be used in creating wxDb instances
1733 for creating connection(s) to a datasource.}
1734 \docparam{userID}{{\it OPTIONAL} Many datasources allow (or even require)
1735 use of a username to determine privileges that connecting user is allowed
1736 to have when accessing the datasource or the data tables. Default is "".}
1737 \docparam{password}{{\it OPTIONAL} Password to be associated with the user
1738 ID specified in 'userID'. Default is "".}
1739 \docparam{defaultDir}{{\it OPTIONAL} Used for datasources which require the
1740 path to where the data file is stored to be specified. dBase is one example
1741 of the type of datasource which requires this information. Default is "".}
1742 \docparam{description}{{\it OPTIONAL} {\bf FUTURE USE} Default is "".}
1743 \docparam{fileType}{{\it OPTIONAL} {\bf FUTURE USE} Default is "".}
1744
1745 \wxheading{Remarks}
1746
1747 It is strongly recommended that programs use the longer form of the
1748 constructor and allow the constructor to create the SQL environment handle
1749 automatically, and manage the destruction of the handle.
1750
1751 \wxheading{Example}
1752
1753 \begin{verbatim}
1754 wxDbConnectInf *DbConnectInf;
1755
1756 DbConnectInf = new wxDbConnectInf(0,"MY_DSN", "MY_USER", "MY_PASSWORD");
1757
1758 ....the rest of the program
1759
1760 delete DbConnectInf;
1761 \end{verbatim}
1762
1763 \wxheading{See also}
1764
1765 \helpref{wxDConnectInf::AllocHenv}{wxdbconnectinfallochenv},
1766 \helpref{wxDConnectInf::FreeHenv}{wxdbconnectinffreehenv}
1767
1768
1769 \membersection{wxDbConnectInf::\destruct{wxDbConnectInf}}\label{wxdbconnectinfdestr}
1770
1771 \func{}{\destruct{wxDbConnectInf}}{}
1772
1773 Handles the default destruction of the instance of the class. If the long form
1774 of the \helpref{wxDConnectInf}{wxdbconnectinf} was used, then this destructor
1775 also takes care of calling
1776 \helpref{wxDConnectInf::FreeHenv}{wxdbconnectinffreehenv} to free the
1777 SQL environment handle.
1778
1779
1780 \membersection{wxDbConnectInf::AllocHenv}\label{wxdbconnectinfallochenv}
1781
1782 \func{bool }{AllocHenv}{\void}
1783
1784 Allocates a SQL environment handle that will be used to interface with
1785 an ODBC datasource.
1786
1787 \wxheading{Remarks}
1788
1789 This function can be automatically called by the long from of the
1790 \helpref{wxDbConnectInf}{wxdbconnectinf} constructor.
1791
1792
1793 \membersection{wxDbConnectInf::FreeHenv}\label{wxdbconnectinffreehenv}
1794
1795 \func{void}{FreeHenv}{\void}
1796
1797 Frees the SQL environment handle being managed by the instance of this class.
1798
1799 \wxheading{Remarks}
1800
1801 If the SQL environment handle was created using the long form of the
1802 \helpref{wxDbConnectInf}{wxdbconnectinf} constructor, then the flag indicating
1803 that the HENV should be destroyed when the classes destructor is called
1804 is reset to be FALSE, so that any future handles created using the
1805 \helpref{wxDbConnectInf::AllocHenv}{wxdbconnectinfallochenv} function
1806 must be manually released with a call to this function.
1807
1808
1809 \membersection{wxDbConnectInf::Initialize}\label{wxdbconnectinfinitialize}
1810
1811 Simply initializes all member variables to a cleared state. Called by
1812 the constructor automatically.
1813
1814
1815 \membersection{wxDbConnectInf::GetAuthStr}\label{wxdbconnectinfgetauthstr}
1816
1817 \func{const wxChar *}{GetAuthStr}{\void}
1818
1819 Accessor function to return the password assigned for this class
1820 instance that will be used with the user ID.
1821
1822 Synonymous with \helpref{wxDbConnectInf::GetPassword}{wxdbconnectinfgetpassword}
1823
1824
1825 \membersection{wxDbConnectInf::GetDefaultDir}\label{wxdbconnectinfgetdefaultdir}
1826
1827 \func{const wxChar *}{GetDefaultDir}{\void}
1828
1829 Accessor function to return the default directory in which the datasource's data
1830 table is stored. This directory is only used for file based datasources like
1831 dBase. MS-Access does not require this to be set, as the path is set in the
1832 ODBC Administrator for MS-Access.
1833
1834
1835 \membersection{wxDbConnectInf::GetDescription}\label{wxdbconnectinfgetdescription}
1836
1837 \func{const wxChar *}{GetDescription}{\void}
1838
1839 Accessor function to return the description assigned for this class
1840 instance.
1841
1842 NOTE: Description is a FUTURE USE item and is unused currently.
1843
1844
1845 \membersection{wxDbConnectInf::GetDsn}\label{wxdbconnectinfgetdsn}
1846
1847 \func{const wxChar *}{GetDsn}{\void}
1848
1849 Accessor function to return the datasource name assigned for this class
1850 instance.
1851
1852
1853 \membersection{wxDbConnectInf::GetFileType}\label{wxdbconnectinfgetfiletype}
1854
1855 \func{const wxChar *}{GetFileType}{\void}
1856
1857 Accessor function to return the filetype of the ODBC datasource assigned for
1858 this class instance.
1859
1860 NOTE: FileType is a FUTURE USE item and is unused currently.
1861
1862
1863 \membersection{wxDbConnectInf::GetHenv}\label{wxdbconnectinfgethenv}
1864
1865 \func{const HENV}{GetHenv}{\void}
1866
1867 Accessor function to return the SQL environment handle being managed
1868 by this class instance.
1869
1870
1871 \membersection{wxDbConnectInf::GetPassword}\label{wxdbconnectinfgetpassword}
1872
1873 \func{const wxChar *}{GetPassword}{\void}
1874
1875 Accessor function to return the password assigned for this class
1876 instance that will be used with the user ID.
1877
1878 Synonymous with \helpref{wxDbConnectInf::GetAuthStr}{wxdbconnectinfgetauthstr}
1879
1880
1881 \membersection{wxDbConnectInf::GetUid}\label{wxdbconnectinfgetuid}
1882
1883 \func{const wxChar *}{GetUid}{\void}
1884
1885 Accessor function to return the user ID assigned for this class
1886 instance.
1887
1888
1889 \membersection{wxDbConnectInf::GetUserID}\label{wxdbconnectinfgetuserid}
1890
1891 \func{const wxChar *}{GetUserID}{\void}
1892
1893 Accessor function to return the user ID assigned for this class
1894 instance.
1895
1896
1897 \membersection{wxDbConnectInf::SetAuthStr}\label{wxdbconnectinfsetauthstr}
1898
1899 \func{\void}{SetAuthStr}{const wxString \&authstr}
1900
1901 Accessor function to assign the password for this class
1902 instance that will be used with the user ID.
1903
1904 Synonymous with \helpref{wxDbConnectInf::SetPassword}{wxdbconnectinfsetpassword}
1905
1906
1907 \membersection{wxDbConnectInf::SetDefaultDir}\label{wxdbconnectinfsetdefaultdir}
1908
1909 \func{\void}{SetDefaultDir}{const wxString \&defDir}
1910
1911 Accessor function to assign the default directory in which the datasource's data
1912 table is stored. This directory is only used for file based datasources like
1913 dBase. MS-Access does not require this to be set, as the path is set in the
1914 ODBC Administrator for MS-Access.
1915
1916
1917 \membersection{wxDbConnectInf::SetDescription}\label{wxdbconnectinfsetdescription}
1918
1919 \func{\void}{SetDescription}{const wxString \&desc}
1920
1921 Accessor function to assign the description assigned for this class
1922 instance.
1923
1924 NOTE: Description is a FUTURE USE item and is unused currently.
1925
1926
1927 \membersection{wxDbConnectInf::SetDsn}\label{wxdbconnectinfsetdsn}
1928
1929 \func{\void}{SetDsn}{const wxString \&dsn}
1930
1931 Accessor function to assign the datasource name for this class instance.
1932
1933
1934 \membersection{wxDbConnectInf::SetFileType}\label{wxdbconnectinfsetfiletype}
1935
1936 \func{\void}{SetFileType}{const wxString \&}
1937
1938 Accessor function to return the filetype of the ODBC datasource assigned for
1939 this class instance.
1940
1941 NOTE: FileType is a FUTURE USE item and is unused currently.
1942
1943
1944 \membersection{wxDbConnectInf::SetHenv}\label{wxdbconnectinfsethenv}
1945
1946 \func{void}{SetHenv}{\param{const HENV }{henv}}
1947
1948 Accessor function to set the SQL environment handle for this class instance.
1949
1950
1951 \membersection{wxDbConnectInf::SetPassword}\label{wxdbconnectinfsetpassword}
1952
1953 \func{\void}{SetPassword}{const wxString \&password}
1954
1955 Accessor function to assign the password for this class
1956 instance that will be used with the user ID.
1957
1958 Synonymous with \helpref{wxDbConnectInf::SetAuthStr}{wxdbconnectinfsetauthstr}
1959
1960
1961 \membersection{wxDbConnectInf::SetUid}\label{wxdbconnectinfsetuid}
1962
1963 \func{\void}{SetUid}{const wxString \&uid}
1964
1965 Accessor function to set the user ID for this class instance.
1966
1967
1968 \membersection{wxDbConnectInf::SetUserID}\label{wxdbconnectinfsetuserid}
1969
1970 \func{\void}{SetUserID}{const wxString \&userID}
1971
1972 Accessor function to assign the user ID for this class instance.
1973
1974
1975
1976 \section{\class{wxDbIdxDef}}\label{wxdbidxdef}
1977
1978 Used in creation of non-primary indexes. Currently there are no member
1979 functions for this class.
1980
1981 \begin{verbatim}
1982 wxChar ColName[DB_MAX_COLUMN_NAME_LEN+1]
1983 // Name of column
1984 bool Ascending // Is index maintained in
1985 ASCENDING sequence?
1986 \end{verbatim}
1987
1988 There are no constructors/destructors as of this time, and no member functions.
1989
1990
1991 \section{\class{wxDbInf}}\label{wxdbinf}
1992
1993 Contains information regarding the database connection (datasource name,
1994 number of tables, etc). A pointer to a wxDbTableInf is included in this
1995 class so a program can create a wxDbTableInf array instance to maintain all
1996 information about all tables in the datasource to have all the datasource's
1997 information in one memory structure.
1998
1999 Primarily, this class is used internally by the wxWindows ODBC classes.
2000
2001 \begin{verbatim}
2002 wxChar catalog[128+1];
2003 wxChar schema[128+1]; // typically means owner of table(s)
2004 int numTables; // How many tables does this
2005 datasource have
2006 wxDbTableInf *pTableInf; // Equals a new
2007 wxDbTableInf[numTables];
2008 \end{verbatim}
2009
2010 The constructor for this class initializes all the values to zero, "", or NULL.
2011
2012 The destructor for this class takes care of deleting the pTableInf member if
2013 it is non-NULL.
2014
2015 \membersection{wxDbInf::Initialize}\label{wxdbinfinitialize}
2016
2017 Simply initializes all member variables to a cleared state. Called by
2018 the constructor automatically.
2019
2020
2021 \section{\class{wxDbTable}}\label{wxdbtable}
2022
2023 A wxDbTable instance provides re-usable access to rows of data in
2024 a table contained within the associated ODBC datasource
2025
2026 \wxheading{Include files}
2027
2028 <wx/dbtable.h>\\
2029 <wx/db.h>
2030
2031 \latexignore{\rtfignore{\wxheading{Members}}}
2032 \wxheading{Helper classes and data structures}
2033
2034 The following classes and structs are defined in dbtable.cpp/.h for use
2035 with the wxDbTable class.
2036
2037 \begin{itemize}\itemsep=0pt
2038 \item \helpref{wxDbColDef}{wxdbcoldef}
2039 \item \helpref{wxDbColDataPtr}{wxdbcoldataptr}
2040 \item \helpref{wxDbIdxDef}{wxdbidxdef}
2041 \end{itemize}
2042
2043 \wxheading{Constants}
2044
2045 \begin{verbatim}
2046 wxDB_DEFAULT_CURSOR Primary cursor normally used for cursor based
2047 operations.
2048
2049 wxDB_QUERY_ONLY Used to indicate whether a table that is opened
2050 is for query only, or if insert/update/deletes
2051 will be performed on the table. Less overhead
2052 (cursors and memory) are allocated for query
2053 only tables, plus read access times are faster
2054 with some datasources.
2055
2056 wxDB_ROWID_LEN [Oracle only] - Used when CanUpdateByRowID()
2057 is true. Optimizes updates so they are faster
2058 by updating on the Oracle-specific ROWID column
2059 rather than some other index.
2060
2061
2062 wxDB_DISABLE_VIEW Use to indicate when a database view should not
2063 be if a table is normally set up to use a view.
2064 [Currently unsupported.]
2065
2066 \end{verbatim}
2067
2068
2069 \latexignore{\rtfignore{\wxheading{Members}}}
2070
2071 \membersection{wxDbTable::wxDbTable}\label{wxdbtableconstr}
2072
2073 \func{}{wxDbTable}{\param{wxDb *}{pwxDb}, \param{const wxString \&}{tblName},
2074 \param{const UWORD }{numColumns}, \param{const wxString \&}{qryTblName = ""},
2075 \param{bool }{qryOnly = !wxDB\_QUERY\_ONLY}, \param{const wxString \&}{tblPath = ""}}
2076
2077 Default constructor.
2078
2079 \wxheading{Parameters}
2080
2081 \docparam{pwxDb}{Pointer to the wxDb instance to be used by this wxDbTable
2082 instance.}
2083 \docparam{tblName}{The name of the table in the RDBMS.}
2084 \docparam{numColumns}{The number of columns in the table. (Do NOT include the ROWID
2085 column in the count if using Oracle).}
2086 \docparam{qryTblName}{{\it OPTIONAL}. The name of the table or view to base
2087 your queries on. This argument allows you to specify a table/view other than
2088 the base table for this object to base your queries on. This allows you to
2089 query on a view for example, but all of the INSERT, UPDATE and DELETES will
2090 still be performed on the base table for this wxDbTable object. Basing your
2091 queries on a view can provide a substantial performance increase in cases where
2092 your queries involve many tables with multiple joins. Default is "".}
2093 \docparam{qryOnly}{{\it OPTIONAL}. Indicates whether the table will be
2094 accessible for query purposes only, or should the table create the necessary
2095 cursors to be able to insert, update, and delete data from the table.
2096 Default is !wxDB\_QUERY\_ONLY.}
2097 \docparam{tblPath}{{\it OPTIONAL}. Some datasources (such as dBase)
2098 require a path to where the table is stored on the system. Default is "".}
2099
2100 \membersection{wxDbTable::wxDbTable}\label{wxdbtabledestr}
2101
2102 \func{virtual}{\destruct{wxDbTable}}{}
2103
2104 Virtual default destructor.
2105
2106
2107 \membersection{wxDbTable::BuildDeleteStmt}\label{wxdbtablebuilddeletestmt}
2108
2109 \func{void}{BuildDeleteStmt}{\param{wxString \&}{pSqlStmt},
2110 \param{int }{typeOfDel}, \param{const wxString \&}{pWhereClause=""}}
2111
2112 Constructs the full SQL statement that can be used to delete all rows matching
2113 the criteria in the pWhereClause.
2114
2115 \wxheading{Parameters}
2116
2117 \docparam{pSqlStmt}{Pointer to buffer for the SQL statement retrieved. To be
2118 sure you have adequate space allocated for the SQL statement, allocate
2119 DB\_MAX\_STATEMENT\_LEN bytes.}
2120 \docparam{typeOfDel}{The type of delete statement being performed. Can be one
2121 of three values: DB\_DEL\_KEYFIELDS, DB\_DEL\_WHERE or DB\_DEL\_MATCHING}
2122 \docparam{pWhereClause}{{\it OPTIONAL}. If the typeOfDel is DB\_DEL\_WHERE,
2123 then you must also pass in a SQL WHERE clause in this argument. Default
2124 is "".}
2125
2126 \wxheading{Remarks}
2127
2128 This member function constructs a SQL DELETE statement. This can be used for
2129 debugging purposes if you are having problems executing your SQL statement.
2130
2131 WHERE and FROM clauses specified using \helpref{wxDbTable::SetWhereClause}{wxdbtablesetwhereclause}
2132 and \helpref{wxDbTable::SetFromClause}{wxdbtablesetfromclause} are ignored by
2133 this function.
2134
2135
2136 \membersection{wxDbTable::BuildSelectStmt}\label{wxdbtablebuildselectstmt}
2137
2138 \func{void}{BuildSelectStmt}{\param{wxString \&}{pSqlStmt},
2139 \param{int }{typeOfSelect}, \param{bool }{distinct}}
2140
2141 Constructs the full SQL statement that can be used to select all rows matching
2142 the criteria in the pWhereClause. This function is called internally in the
2143 wxDbTable class whenever the function \helpref{wxDbTable::Query}{wxdbtablequery}
2144 is called.
2145
2146 NOTE: Only the columns specified in \helpref{wxDbTable::SetColDefs}{wxdbtablesetcoldefs}
2147 statements are included in the list of columns returned by the SQL statement
2148 created by a call to this function.
2149
2150 \wxheading{Parameters}
2151
2152 \docparam{pSqlStmt}{Pointer to storage for the SQL statement retrieved. To be
2153 sure you have adequate space allocated for the SQL statement, allocate
2154 DB\_MAX\_STATEMENT\_LEN bytes.}
2155 \docparam{typeOfSelect}{The type of select statement being performed. Can be
2156 one of four values: DB\_SELECT\_KEYFIELDS, DB\_SELECT\_WHERE, DB\_SELECT\_MATCHING
2157 or DB\_SELECT\_STATEMENT.}
2158 \docparam{distinct}{Whether to select distinct records only.}
2159
2160 \wxheading{Remarks}
2161
2162 This member function constructs a SQL SELECT statement. This can be used for
2163 debugging purposes if you are having problems executing your SQL statement.
2164
2165 WHERE and FROM clauses specified using
2166 \helpref{wxDbTable::SetWhereClause}{wxdbtablesetwhereclause}
2167 and \helpref{wxDbTable::SetFromClause}{wxdbtablesetfromclause} are ignored by
2168 this function.
2169
2170
2171 \membersection{wxDbTable::BuildUpdateStmt}\label{wxdbtablebuildupdatestmt}
2172
2173 \func{void}{BuildUpdateStmt}{\param{wxString \&}{pSqlStmt}, \param{int }{typeOfUpd},
2174 \param{const wxString \&}{pWhereClause=""}}
2175
2176 Constructs the full SQL statement that can be used to update all rows matching
2177 the criteria in the pWhereClause.
2178
2179 If typeOfUpd is DB\_UPD\_KEYFIELDS, then the current values in the bound columns
2180 are used to determine which row(s) in the table are to be updated. The
2181 exception to this is when a datasource supports ROW IDs (Oracle). The ROW ID
2182 column is used for efficiency purposes when available.
2183
2184 NOTE: Only the columns specified in \helpref{wxDbTable::SetColDefs}{wxdbtablesetcoldefs}
2185 statements are included in the list of columns updated by the SQL statement
2186 created by a call to this function. Any column definitions that were defined
2187 as being non-updateable will be excluded from the SQL UPDATE statement created
2188 by this function.
2189
2190 \wxheading{Parameters}
2191
2192 \docparam{pSqlStmt}{Pointer to storage for the SQL statement retrieved. To be
2193 sure you have adequate space allocated for the SQL statement, allocate
2194 DB\_MAX\_STATEMENT\_LEN bytes.}
2195 \docparam{typeOfUpd}{The type of update statement being performed. Can be one
2196 of two values: DB\_UPD\_KEYFIELDS or DB\_UPD\_WHERE.}
2197 \docparam{pWhereClause}{{\it OPTIONAL}. If the typeOfUpd is DB\_UPD\_WHERE,
2198 then you must also pass in a SQL WHERE clause in this argument. Default is "".}
2199
2200 \wxheading{Remarks}
2201
2202 This member function allows you to see what the SQL UPDATE statement looks like
2203 that the ODBC class library builds. This can be used for debugging purposes if
2204 you are having problems executing your SQL statement.
2205
2206 WHERE and FROM clauses specified using \helpref{wxDbTable::SetWhereClause}{wxdbtablesetwhereclause}
2207 and \helpref{wxDbTable::SetFromClause}{wxdbtablesetfromclause} are ignored by
2208 this function.
2209
2210
2211 \membersection{wxDbTable::BuildWhereStmt}\label{wxdbtablebuildwherestmt}
2212
2213 \func{void}{BuildSelectStmt}{\param{wxString \&}{pWhereClause},
2214 \param{int }{typeOfWhere}, \param{const wxString \&}{qualTableName=""},
2215 \param{bool }{useLikeComparison=FALSE}}
2216
2217 Constructs the portion of a SQL statement which would follow the word 'WHERE'
2218 in a SQL statement to be passed to the datasource. The returned string
2219 does NOT include the word 'WHERE'.
2220
2221 \wxheading{Parameters}
2222
2223 \docparam{pWhereClause}{Pointer to storage for the SQL statement retrieved.
2224 To be sure you have adequate space allocated for the SQL statement, allocate
2225 DB\_MAX\_STATEMENT\_LEN bytes.}
2226 \docparam{typeOfWhere}{The type of where clause to generate. Can be one of
2227 two values: DB\_WHERE\_KEYFIELDS or DB\_WHERE\_MATCHING.}
2228 \docparam{qualTableName}{{\it OPTIONAL}. Prepended to all base table
2229 column names. For use when a FROM clause has been specified with the
2230 \helpref{wxDbTable::SetFromClause}{wxdbtablesetfromclause},
2231 to clarify which table a column name reference belongs to. Default is "".}
2232 \docparam{useLikeComparison}{{\it OPTIONAL}. Should the constructed WHERE
2233 clause utilize the LIKE comparison operator. If FALSE, then the '='
2234 operator is used. Default is FALSE.}
2235
2236 \wxheading{Remarks}
2237
2238 This member function allows you to see what the SQL WHERE clause looks like
2239 that the ODBC class library builds. This can be used for debugging purposes
2240 if you are having problems executing your own SQL statements.
2241
2242 If using 'typeOfWhere' set to DB\_WHERE\_MATCHING, any bound columns currently
2243 containing a NULL value are not included in the WHERE clause's list of
2244 columns to use in the comparison.
2245
2246
2247 \membersection{wxDbTable::CanSelectForUpdate}\label{wxdbtablecanselectforupdate}
2248
2249 \func{bool}{CanSelectForUpdate}{\void}
2250
2251 Use this function to determine if the datasource supports SELECT ... FOR UPDATE.
2252 When the keywords "FOR UPDATE" are included as part of your SQL SELECT statement,
2253 all records {\it retrieved} (not just queried, but actually retrieved using
2254 \helpref{wxDbTable::GetNext}{wxdbtablegetnext}, etc) from the result set are
2255 locked.
2256
2257 \wxheading{Remarks}
2258
2259 Not all datasources support the "FOR UPDATE" clause, so you must use this
2260 member function to determine if the datasource currently connected to supports
2261 this behavior or not before trying to select using "FOR UPDATE".
2262
2263 If the wxDbTable instance was created with the parameter wxDB\_QUERY\_ONLY, then
2264 this function will return FALSE. For all known databases which do not support
2265 the FOR UPDATE clause, this function will return FALSE also.
2266
2267
2268 \membersection{wxDbTable::CanUpdateByROWID}\label{wxdbtablecanupdatebyrowid}
2269
2270 \func{bool}{CanUpdateByROWID}{\void}
2271
2272 CURRENTLY ONLY POSSIBLE IF USING ORACLE.
2273
2274 --- CURRENTLY DISABLED FOR *ALL* DATASOURCES --- NOV 1 2000 - gt
2275
2276 Every Oracle table has a hidden column named ROWID. This is a pointer to the
2277 physical location of the record in the datasource and allows for very fast
2278 updates and deletes. The key is to retrieve this ROWID during your query so
2279 it is available during an update or delete operation.
2280
2281 Use of the ROWID feature is always handled by the class library except in the
2282 case of \helpref{wxDbTable::QueryBySqlStmt}{wxdbtablequerybysqlstmt}. Since
2283 you are passing in the SQL SELECT statement,
2284 it is up to you to include the ROWID column in your query. If you do not,
2285 the application will still work, but may not be as optimized. The ROWID is
2286 always the last column in the column list in your SQL SELECT statement.
2287 The ROWID is not a column in the normal sense and should not be considered
2288 part of the column definitions for the wxDbTable object.
2289
2290 \wxheading{Remarks}
2291
2292 The decision to include the ROWID in your SQL SELECT statement must be
2293 deferred until runtime since it depends on whether you are connected
2294 to an Oracle datasource or not.
2295
2296 \wxheading{Example}
2297
2298 \begin{verbatim}
2299 // Incomplete code sample
2300 wxDbTable parts;
2301 .....
2302 if (parts.CanUpdByROWID())
2303 {
2304 // Note that the ROWID column must always be the last column selected
2305 sqlStmt = "SELECT PART_NO, PART_DESC, ROWID" FROM PARTS";
2306 }
2307 else
2308 sqlStmt = "SELECT PART_NO, PART_DESC FROM PARTS";
2309 \end{verbatim}
2310
2311
2312 \membersection{wxDbTable::ClearMemberVar}\label{wxdbtableclearmembervar}
2313
2314 \func{void}{ClearMemberVar}{\param{UWORD }{colNo}, \param{bool }{setToNull=FALSE}}
2315
2316 Same as \helpref{wxDbTable::ClearMemberVars}{wxdbtableclearmembervars} except
2317 that this function clears only the specified column of its values, and
2318 optionally sets the column to be a NULL column.
2319
2320 \docparam{colNo}{Column number that is to be cleared. This number (between 0
2321 and (noCols-1)) is the index of the column definition created using the
2322 \helpref{wxDbTable::SetColDefs}{wxdbtablesetcoldefs} function.}
2323 \docparam{setToNull}{{\it OPTIONAL}. Indicates whether the column should be
2324 flagged as being a NULL value stored in the bound memory variable. If TRUE,
2325 then any value stored in the bound member variable is cleared. Default is
2326 FALSE.}
2327
2328
2329 \membersection{wxDbTable::ClearMemberVars}\label{wxdbtableclearmembervars}
2330
2331 \func{void}{ClearMemberVars}{\param{bool }{setToNull=FALSE}}
2332
2333 Initializes all bound columns of the wxDbTable instance to zero. In the case
2334 of a string, zero is copied to the first byte of the string.
2335
2336 \docparam{setToNull}{{\it OPTIONAL}. Indicates whether all columns should be
2337 flagged as having a NULL value stored in the bound memory variable. If TRUE,
2338 then any value stored in the bound member variable is cleared. Default is
2339 FALSE.}
2340
2341 \wxheading{Remarks}
2342
2343 This is useful before calling functions such as
2344 \helpref{wxDbTable::QueryMatching}{wxdbtablequerymatching} or
2345 \helpref{wxDbTable::DeleteMatching}{wxdbtabledeletematching} since these
2346 functions build their WHERE clauses from non-zero columns. To call either
2347 \helpref{wxDbTable::QueryMatching}{wxdbtablequerymatching} or
2348 \helpref{wxDbTable::DeleteMatching}{wxdbtabledeletematching} use this sequence:
2349
2350 \begin{verbatim}
2351 1) ClearMemberVars()
2352 2) Assign columns values you wish to match on
2353 3) Call wxDbTable::QueryMatching() or wxDbTable::DeleteMatching()
2354 \end{verbatim}
2355
2356
2357 \membersection{wxDbTable::CloseCursor}\label{wxdbtableclosecursor}
2358
2359 \func{bool}{CloseCursor}{\param{HSTMT}{cursor}}
2360
2361 Closes the specified cursor associated with the wxDbTable object.
2362
2363 \wxheading{Parameters}
2364
2365 \docparam{cursor}{The cursor to be closed.}
2366
2367 \wxheading{Remarks}
2368
2369 Typically handled internally by the ODBC class library, but may be used by the
2370 programmer if desired.
2371
2372
2373 \normalbox{DO NOT CLOSE THE wxDB\_DEFAULT\_CURSOR!}
2374
2375
2376 \membersection{wxDbTable::Count}\label{wxdbtablecount}
2377
2378 \func{ULONG }{Count}{\param{const wxString \&}{args="*"}}
2379
2380 Returns the number of records which would be in the result set using the
2381 current query parameters specified in the WHERE and FROM clauses.
2382
2383 \wxheading{Parameters}
2384
2385 \docparam{args}{{\it OPTIONAL}. This argument allows the use of the
2386 DISTINCT keyword against a column name to cause the returned count to
2387 only indicate the number of rows in the result set that have a unique
2388 value in the specified column. An example is shown below. Default is "*",
2389 meaning a count of the total number of rows matching is returned, regardless
2390 of uniqueness.}
2391
2392 \wxheading{Remarks}
2393
2394 This function can be called before or after an actual query to obtain the
2395 count of records in the result set. Count() uses its own cursor, so result
2396 set cursor positioning is not affected by calls to Count().
2397
2398 WHERE and FROM clauses specified using
2399 \helpref{wxDbTable::SetWhereClause}{wxdbtablesetwhereclause}
2400 and \helpref{wxDbTable::SetFromClause}{wxdbtablesetfromclause} ARE used by
2401 this function.
2402
2403 \wxheading{Example}
2404
2405 \begin{verbatim}
2406
2407 USERS TABLE
2408
2409 FIRST_NAME LAST_NAME
2410 ----------- ----------
2411 John Doe
2412 Richard Smith
2413 Michael Jones
2414 John Carpenter
2415
2416 // Incomplete code sample
2417 wxDbTable users;
2418 .....
2419 users.SetWhereClause("");
2420
2421 // This Count() will return 4, as there are four users listed above
2422 // that match the query parameters
2423 totalNumberOfUsers = users.Count();
2424
2425 // This Count() will return 3, as there are only 3 unique first names
2426 // in the table above - John, Richard, Michael.
2427 totalNumberOfUniqueFirstNames = users.Count("DISTINCT FIRST_NAME");
2428 \end{verbatim}
2429
2430
2431 \membersection{wxDbTable::CreateIndex}\label{wxdbtablecreateindex}
2432
2433 \func{bool}{CreateIndex}{\param{const wxString \&}{idxName}, \param{bool }{unique},
2434 \param{UWORD }{noIdxCols}, \param{wxDbIdxDef *}{pIdxDefs},
2435 \param{bool }{attemptDrop=TRUE}}
2436
2437 This member function allows you to create secondary (non primary) indexes on
2438 your tables. You first create your table, normally specifying a primary
2439 index, and then create any secondary indexes on the table. Indexes in
2440 relational model are not required. You do not need indexes to look up records
2441 in a table or to join two tables together. In the relational model, indexes,
2442 if available, provide a quicker means to look up data in a table. To enjoy
2443 the performance benefits of indexes, the indexes must be defined on the
2444 appropriate columns and your SQL code must be written in such a way as to
2445 take advantage of those indexes.
2446
2447 \wxheading{Parameters}
2448
2449 \docparam{idxName}{Name of the Index. Name must be unique within the table
2450 space of the datasource.}
2451 \docparam{unique}{Indicates if this index is unique.}
2452 \docparam{noIdxCols}{Number of columns in the index.}
2453 \docparam{pIdxDefs}{A pointer to an array wxDbIdxDef structures. }
2454 \docparam{attemptDrop}{{\it OPTIONAL}. Indicates if the function should try
2455 to execute a \helpref{wxDbTable::DropIndex}{wxdbtabledropindex} on the index
2456 name provided before trying to create the index name. Default is TRUE.}
2457
2458 \wxheading{Remarks}
2459
2460 The first parameter, index name, must be unique and should be given a
2461 meaningful name. Common practice is to include the table name as a prefix
2462 in the index name (e.g. For table PARTS, you might want to call your index
2463 PARTS\_IDX1). This will allow you to easily view all
2464 of the indexes defined for a given table grouped together alphabetically.
2465
2466 The second parameter indicates if the index is unique or not. Uniqueness
2467 is enforced at the RDBMS level preventing rows which would have duplicate
2468 indexes from being inserted into the table when violating a unique index's
2469 uniqueness.
2470
2471 In the third parameter, specify how many columns are in your index. This
2472 number must match the number of columns defined in the 'pIdxDefs' parameter.
2473
2474 The fourth parameter specifies which columns make up the index using the
2475 wxDbIdxDef structure. For each column in the index, you must specify two
2476 things, the column name and the sort order (ascending / descending). See
2477 the example below to see how to build and pass in the wxDbIdxDef structure.
2478
2479 The fifth parameter is provided to handle the differences in datasources as
2480 to whether they will automatically overwrite existing indexes with the same
2481 name or not. Some datasources require that the existing index must be dropped
2482 first, so this is the default behavior.
2483
2484 Some datasources (MySQL, and possibly others) require columns which are to be
2485 part of an index to be defined as NOT NULL. When this function is called, if
2486 a column is not defined to be NOT NULL, a call to this function will modify
2487 the column definition to change any columns included in the index to be
2488 NOT NULL. In this situation, if a NULL value already exists in one of the
2489 columns that is being modified, creation of the index will fail.
2490
2491 PostGres is unable to handle index definitions which specify whether the index
2492 is ascending or descending, and defaults to the system default when the index
2493 is created.
2494
2495 It is not necessary to call \helpref{wxDb::CommitTrans}{wxdbcommittrans}
2496 after executing this function.
2497
2498 \wxheading{Example}
2499
2500 \begin{verbatim}
2501 // Create a secondary index on the PARTS table
2502 wxDbIdxDef idxDef[2]; // 2 columns make up the index
2503
2504 wxStrcpy(idxDef[0].ColName, "PART_DESC"); // Column 1
2505 idxDef[0].Ascending = TRUE;
2506
2507 wxStrcpy(idxDef[1].ColName, "SERIAL_NO"); // Column 2
2508 idxDef[1].Ascending = FALSE;
2509
2510 // Create a name for the index based on the table's name
2511 wxString indexName;
2512 indexName.Printf("%s_IDX1",parts->GetTableName());
2513 parts->CreateIndex(indexName, TRUE, 2, idxDef);
2514 \end{verbatim}
2515
2516
2517 \membersection{wxDbTable::CreateTable}\label{wxdbtablecreatetable}
2518
2519 \func{bool}{CreateTable}{\param{bool }{attemptDrop=TRUE}}
2520
2521 Creates a table based on the definitions previously defined for this
2522 wxDbTable instance.
2523
2524 \wxheading{Parameters}
2525
2526 \docparam{attemptDrop}{{\it OPTIONAL}. Indicates whether the driver should
2527 attempt to drop the table before trying to create it. Some datasources will
2528 not allow creation of a table if the table already exists in the table space
2529 being used. Default is TRUE.}
2530
2531 \wxheading{Remarks}
2532
2533 This function creates the table and primary index (if any) in the table space
2534 associated with the connected datasource. The owner of these objects will
2535 be the user id that was given when \helpref{wxDb::Open}{wxdbopen} was called.
2536 The objects will be created in the default schema/table space for that user.
2537
2538 In your derived wxDbTable object constructor, the columns and primary index
2539 of the table are described through the \helpref{wxDbColDef}{wxdbcoldef} structure.
2540 \helpref{wxDbTable::CreateTable}{wxdbtablecreatetable} uses this information
2541 to create the table and to add the primary index. See
2542 \helpref{wxDbTable}{wxdbtable} ctor and wxDbColDef description for additional
2543 information on describing the columns of the table.
2544
2545 It is not necessary to call \helpref{wxDb::CommitTrans}{wxdbcommittrans}
2546 after executing this function.
2547
2548
2549 \membersection{wxDbTable::DB\_STATUS}\label{wxdbtabledbstatus}
2550
2551 \func{bool}{DB\_STATUS}{\void}
2552
2553 Accessor function that returns the wxDb private member variable DB\_STATUS for
2554 the database connection used by this instance of wxDbTable.
2555
2556
2557 \membersection{wxDbTable::Delete}\label{wxdbtabledelete}
2558
2559 \func{bool}{Delete}{\void}
2560
2561 Deletes the row from the table indicated by the current cursor.
2562
2563 \wxheading{Remarks}
2564
2565 Use \helpref{wxDbTable::GetFirst}{wxdbtablegetfirst},
2566 \helpref{wxDbTable::GetLast}{wxdbtablegetlast},
2567 \helpref{wxDbTable::GetNext}{wxdbtablegetnext} or
2568 \helpref{wxDbTable::GetPrev}{wxdbtablegetprev} to position the cursor to
2569 a valid record. Once positioned on a record, call this function to delete
2570 the row from the table.
2571
2572 A \helpref{wxDb::CommitTrans}{wxdbcommittrans} or
2573 \helpref{wxDb::RollbackTrans}{wxdbrollbacktrans} must be called after use of
2574 this function to commit or rollback the deletion.
2575
2576 NOTE: Most datasources have a limited size "rollback" segment. This means
2577 that it is only possible to insert/update/delete a finite number of rows
2578 without performing a \helpref{wxDb::CommitTrans}{wxdbcommittrans} or
2579 \helpref{wxDb::RollbackTrans}{wxdbrollbacktrans}. Size of the rollback
2580 segment varies from database to database, and is user configurable in
2581 most databases. Therefore it is usually best to try to perform a commit
2582 or rollback at relatively small intervals when processing a larger number
2583 of actions that insert/update/delete rows in a table.
2584
2585
2586 \membersection{wxDbTable::DeleteCursor}\label{wxdbtabledeletecursor}
2587
2588 \func{bool}{DeleteCursor}{\param{HSTMT *}{hstmtDel}}
2589
2590 Allows a program to delete a cursor.
2591
2592 \wxheading{Parameters}
2593
2594 \docparam{hstmtDel}{Handle of the cursor to delete.}
2595
2596 \wxheading{Remarks}
2597
2598 For default cursors associated with the instance of wxDbTable, it is not
2599 necessary to specifically delete the cursors. This is automatically done
2600 in the wxDbTable destructor.
2601
2602 NOTE: If the cursor could not be deleted for some reason, an error is logged
2603 indicating the reason. Even if the cursor could not be deleted, the HSTMT
2604 that is passed in is deleted, and the pointer is set to NULL.
2605
2606 \normalbox{DO NOT DELETE THE wxDB\_DEFAULT\_CURSOR!}
2607
2608
2609 \membersection{wxDbTable::DeleteMatching}\label{wxdbtabledeletematching}
2610
2611 \func{bool}{DeleteMatching}{\void}
2612
2613 This member function allows you to delete records from your wxDbTable object
2614 by specifying the data in the columns to match on.
2615
2616 \wxheading{Remarks}
2617
2618 To delete all users with a first name of "JOHN", do the following:
2619
2620 \begin{verbatim}
2621 1) Clear all "columns" using wxDbTable::ClearMemberVars().
2622 2) Set the FIRST_NAME column equal to "JOHN".
2623 3) Call wxDbTable::DeleteMatching().
2624 \end{verbatim}
2625
2626 The WHERE clause is built by the ODBC class library based on all non-NULL
2627 columns. This allows deletion of records by matching on any column(s) in
2628 your wxDbTable instance, without having to write the SQL WHERE clause.
2629
2630 A \helpref{wxDb::CommitTrans}{wxdbcommittrans} or
2631 \helpref{wxDb::RollbackTrans}{wxdbrollbacktrans} must be called after use of
2632 this function to commit or rollback the deletion.
2633
2634 NOTE: Row(s) should be locked before deleting them to make sure they are
2635 not already in use. This can be achieved by calling
2636 \helpref{wxDbTable::QueryMatching}{wxdbtablequerymatching},
2637 and then retrieving the records, locking each as you go (assuming FOR UPDATE
2638 is allowed on the datasource). After the row(s) have been successfully locked,
2639 call this function.
2640
2641 NOTE: Most datasources have a limited "rollback" segment. This means
2642 that it is only possible to insert/update/delete a finite number of rows
2643 without performing a \helpref{wxDb::CommitTrans}{wxdbcommittrans} or
2644 \helpref{wxDb::RollbackTrans}{wxdbrollbacktrans}. Size of the rollback
2645 segment varies from database to database, and is user configurable in
2646 most databases. Therefore it is usually best to try to perform a commit
2647 or rollback at relatively small intervals when processing a larger number
2648 of actions that insert/update/delete rows in a table.
2649
2650
2651 \wxheading{Example}
2652
2653 \begin{verbatim}
2654 // Incomplete code sample to delete all users with a first name
2655 // of "JOHN"
2656 users.ClearMemberVars();
2657 wxStrcpy(users.FirstName,"JOHN");
2658 users.DeleteMatching();
2659 \end{verbatim}
2660
2661
2662 \membersection{wxDbTable::DeleteWhere}\label{wxdbtabledeletewhere}
2663
2664 \func{bool}{DeleteWhere}{\param{const wxString \&}{pWhereClause}}
2665
2666 Deletes all rows from the table which match the criteria specified in the
2667 WHERE clause that is passed in.
2668
2669 \wxheading{Parameters}
2670
2671 \docparam{pWhereClause}{SQL WHERE clause. This WHERE clause determines which
2672 records will be deleted from the table interfaced through the wxDbTable
2673 instance. The WHERE clause passed in must be compliant with the SQL 92
2674 grammar. Do not include the keyword 'WHERE'
2675 }
2676
2677 \wxheading{Remarks}
2678
2679 This is the most powerful form of the wxDbTable delete functions. This
2680 function gives access to the full power of SQL. This function can be used
2681 to delete records by passing a valid SQL WHERE clause. Sophisticated
2682 deletions can be performed based on multiple criteria using the full
2683 functionality of the SQL language.
2684
2685 A \helpref{wxDb::CommitTrans}{wxdbcommittrans} must be called after use of
2686 this function to commit the deletions.
2687
2688 Note: This function is limited to deleting records from the table associated
2689 with this wxDbTable object only. Deletions on joined tables is not possible.
2690
2691 NOTE: Most datasources have a limited size "rollback" segment. This means
2692 that it is only possible to insert/update/delete a finite number of rows
2693 without performing a \helpref{wxDb::CommitTrans}{wxdbcommittrans} or
2694 \helpref{wxDb::RollbackTrans}{wxdbrollbacktrans}. Size of the rollback
2695 segment varies from database to database, and is user configurable in
2696 most databases. Therefore it is usually best to try to perform a commit
2697 or rollback at relatively small intervals when processing a larger number
2698 of actions that insert/update/delete rows in a table.
2699
2700 WHERE and FROM clauses specified using \helpref{wxDbTable::SetWhereClause}{wxdbtablesetwhereclause}
2701 and \helpref{wxDbTable::SetFromClause}{wxdbtablesetfromclause} are ignored by
2702 this function.
2703
2704 \wxheading{Example}
2705
2706 \begin{verbatim}
2707 // Delete parts 1 thru 10 from containers 'X', 'Y' and 'Z' that
2708 // are magenta in color
2709 parts.DeleteWhere("(PART_NUMBER BETWEEN 1 AND 10) AND \
2710 CONTAINER IN ('X', 'Y', 'Z') AND \
2711 UPPER(COLOR) = 'MAGENTA'");
2712 \end{verbatim}
2713
2714
2715 \membersection{wxDbTable::DropIndex}\label{wxdbtabledropindex}
2716
2717 \func{bool}{DropIndex}{\param{const wxString \&}{idxName}}
2718
2719 Allows an index on the associated table to be dropped (deleted) if the user
2720 login has sufficient privileges to do so.
2721
2722 \wxheading{Parameters}
2723
2724 \docparam{idxName}{Name of the index to be dropped.}
2725
2726 \wxheading{Remarks}
2727
2728 If the index specified in the 'idxName' parameter does not exist, an error
2729 will be logged, and the function will return a result of FALSE.
2730
2731 It is not necessary to call \helpref{wxDb::CommitTrans}{wxdbcommittrans}
2732 after executing this function.
2733
2734
2735 \membersection{wxDbTable::DropTable}\label{wxdbtabledroptable}
2736
2737 \func{bool}{DropTable}{\void}
2738
2739 Deletes the associated table if the user has sufficient privileges to do so.
2740
2741 \wxheading{Remarks}
2742
2743 This function returns TRUE if the table does not exist, but only for
2744 supported databases (see \helpref{wxDb::Dbms}{wxdbdbms}). If a datasource
2745 is not specifically supported, and this function is called, the function
2746 will return FALSE.
2747
2748 Most datasources/ODBC drivers will delete any indexes associated with the
2749 table automatically, and others may not. Check the documentation for your
2750 database to determine the behavior.
2751
2752 It is not necessary to call \helpref{wxDb::CommitTrans}{wxdbcommittrans}
2753 after executing this function.
2754
2755
2756 \membersection{wxDbTable::From}\label{wxdbtablefrom}
2757
2758 \func{const wxString \&}{From}{}
2759
2760 \func{void}{From}{\param{const wxString \&}{From}}
2761
2762 Accessor function for the private class member wxDbTable::from. Can be used
2763 as a synonym for \helpref{wxDbTable::GetFromClause}{wxdbtablegetfromclause}
2764 (the first form of this function) or
2765 \helpref{wxDbTable::SetFromClause}{wxdbtablesetfromclause} (the second form
2766 of this function).
2767
2768 \wxheading{Parameters}
2769
2770 \docparam{From}{A comma separated list of table names that are to be outer
2771 joined with the base table's columns so that the joined table's columns
2772 may be returned in the result set or used as a portion of a comparison with
2773 the base table's columns. NOTE that the base tables name must NOT be included
2774 in the FROM clause, as it is automatically included by the wxDbTable class
2775 in constructing query statements.}
2776
2777 \wxheading{Return value}
2778
2779 The first form of this function returns the current value of the wxDbTable
2780 member variable ::from.
2781
2782 The second form of the function has no return value, as it will always set
2783 the from clause successfully.
2784
2785 \wxheading{See also}
2786
2787 \helpref{wxDbTable::GetFromClause}{wxdbtablegetfromclause},
2788 \helpref{wxDbTable::SetFromClause}{wxdbtablesetfromclause}
2789
2790
2791 \membersection{wxDbTable::GetColDefs}\label{wxdbtablegetcoldefs}
2792
2793 \func{wxDbColDef *}{GetColDefs}{}
2794
2795 Accessor function that returns a pointer to the array of column definitions
2796 that are bound to the columns that this wxDbTable instance is associated
2797 with.
2798
2799 To determine the number of elements pointed to by the returned
2800 \helpref{wxDbColDef}{wxdbcoldef} pointer, use the
2801 \helpref{wxDbTable::GetNumberOfColumns}{wxdbtablegetnumberofcolumns} function.
2802
2803 \wxheading{Remarks}
2804
2805 These column definitions must not be manually redefined after they have been
2806 set.
2807
2808
2809 \membersection{wxDbTable::GetCursor}\label{wxdbtablegetcursor}
2810
2811 \func{HSTMT}{GetCursor}{\void}
2812
2813 Returns the HSTMT value of the current cursor for this wxDbTable object.
2814
2815 \wxheading{Remarks}
2816
2817 This function is typically used just before changing to use a different cursor
2818 so that after the program is finished using the other cursor, the current
2819 cursor can be set back to being the cursor in use.
2820
2821 \wxheading{See also}
2822
2823 \helpref{wxDbTable::SetCursor}{wxdbtablesetcursor}, \helpref{wxDbTable::GetNewCursor}{wxdbtablegetnewcursor}
2824
2825
2826 \membersection{wxDbTable::GetDb}\label{wxdbtablegetdb}
2827
2828 \func{wxDb *}{GetDb}{}
2829
2830 Accessor function for the private member variable pDb which is a pointer to
2831 the datasource connection that this wxDbTable instance uses.
2832
2833
2834 \membersection{wxDbTable::GetFirst}\label{wxdbtablegetfirst}
2835
2836 \func{bool}{GetFirst}{\void}
2837
2838 Retrieves the FIRST row in the record set as defined by the current query.
2839 Before retrieving records, a query must be performed using
2840 \helpref{wxDbTable::Query}{wxdbtablequery},
2841 \helpref{wxDbTable::QueryOnKeyFields}{wxdbtablequeryonkeyfields},
2842 \helpref{wxDbTable::QueryMatching}{wxdbtablequerymatching} or
2843 \helpref{wxDbTable::QueryBySqlStmt}{wxdbtablequerybysqlstmt}.
2844
2845 \wxheading{Remarks}
2846
2847 This function can only be used if the datasource connection used by the
2848 wxDbTable instance was created with FwdOnlyCursors set to FALSE. If the
2849 connection does not allow backward scrolling cursors, this function will
2850 return FALSE, and the data contained in the bound columns will be undefined.
2851
2852 \wxheading{See also}
2853
2854 \helpref{wxDb::IsFwdOnlyCursors}{wxdbisfwdonlycursors}
2855
2856
2857 \membersection{wxDbTable::GetFromClause}\label{wxdbtablegetfromclause}
2858
2859 \func{const wxString \&}{GetFromClause}{}
2860
2861 Accessor function that returns the current FROM setting assigned with the
2862 \helpref{wxDbTable::SetFromClause}{wxdbtablesetfromclause}.
2863
2864 \wxheading{See also}
2865
2866 \helpref{wxDbTable::From}{wxdbtablefrom}
2867
2868
2869 \membersection{wxDbTable::GetLast}\label{wxdbtablegetlast}
2870
2871 \func{bool}{GetLast}{\void}
2872
2873 Retrieves the LAST row in the record set as defined by the current query.
2874 Before retrieving records, a query must be performed using
2875 \helpref{wxDbTable::Query}{wxdbtablequery},
2876 \helpref{wxDbTable::QueryOnKeyFields}{wxdbtablequeryonkeyfields},
2877 \helpref{wxDbTable::QueryMatching}{wxdbtablequerymatching} or
2878 \helpref{wxDbTable::QueryBySqlStmt}{wxdbtablequerybysqlstmt}.
2879
2880 \wxheading{Remarks}
2881
2882 This function can only be used if the datasource connection used by the
2883 wxDbTable instance was created with FwdOnlyCursors set to FALSE. If the
2884 connection does not allow backward scrolling cursors, this function will
2885 return FALSE, and the data contained in the bound columns will be undefined.
2886
2887 \wxheading{See also}
2888
2889 \helpref{wxDb::IsFwdOnlyCursors}{wxdbisfwdonlycursors}
2890
2891
2892 \membersection{wxDbTable::GetNewCursor}\label{wxdbtablegetnewcursor}
2893
2894 \func{HSTMT *}{GetNewCursor}{\param{bool }{setCursor=FALSE},
2895 \param{bool }{bindColumns=TRUE}}
2896
2897 This function will create a new cursor that can be used to access the table
2898 being referenced by this wxDbTable instance, or to execute direct SQL commands
2899 on without affecting the cursors that are already defined and possibly
2900 positioned.
2901
2902 \wxheading{Parameters}
2903
2904 \docparam{setCursor}{{\it OPTIONAL}. Should this new cursor be set to be the
2905 current cursor after successfully creating the new cursor. Default is FALSE.}
2906 \docparam{bindColumns}{{\it OPTIONAL}. Should this new cursor be bound to all
2907 the memory variables that the default cursor is bound to. Default is TRUE.}
2908
2909 \wxheading{Remarks}
2910
2911 This new cursor must be closed using
2912 \helpref{wxDbTable::DeleteCursor}{wxdbtabledeletecursor}
2913 by the calling program before the wxDbTable instance is deleted, or both
2914 memory and resource leaks will occur.
2915
2916
2917 \membersection{wxDbTable::GetNext}\label{wxdbtablegetnext}
2918
2919 \func{bool}{GetNext}{\void}
2920
2921 Retrieves the NEXT row in the record set after the current cursor position
2922 as defined by the current query. Before retrieving records, a query must be
2923 performed using \helpref{wxDbTable::Query}{wxdbtablequery},
2924 \helpref{wxDbTable::QueryOnKeyFields}{wxdbtablequeryonkeyfields},
2925 \helpref{wxDbTable::QueryMatching}{wxdbtablequerymatching} or
2926 \helpref{wxDbTable::QueryBySqlStmt}{wxdbtablequerybysqlstmt}.
2927
2928 \wxheading{Return value}
2929
2930 This function returns FALSE when the current cursor has reached the end of
2931 the result set. When FALSE is returned, data in the bound columns is
2932 undefined.
2933
2934 \wxheading{Remarks}
2935
2936 This function works with both forward and backward scrolling cursors.
2937
2938 \wxheading{See also}
2939 \helpref{wxDbTable::++}{wxdbtableplusplus}
2940
2941
2942 \membersection{wxDbTable::GetNumberOfColumns}\label{wxdbtablegetnumberofcolumns}
2943
2944 \func{UWORD }{GetNumberOfColumns}{}
2945
2946 Accessor function that returns the number of columns that are statically
2947 bound for access by the wxDbTable instance.
2948
2949
2950 \membersection{wxDbTable::GetOrderByClause}\label{wxdbtablegetorderbyclause}
2951
2952 \func{const wxString \&}{GetOrderByClause}{}
2953
2954 Accessor function that returns the current ORDER BY setting assigned with
2955 the \helpref{wxDbTable::SetOrderByClause}{wxdbtablesetorderbyclause}.
2956
2957 \wxheading{See also}
2958
2959 \helpref{wxDbTable::OrderBy}{wxdbtableorderby}
2960
2961
2962 \membersection{wxDbTable::GetPrev}\label{wxdbtablegetprev}
2963
2964 \func{bool}{GetPrev}{\void}
2965
2966 Retrieves the PREVIOUS row in the record set before the current cursor
2967 position as defined by the current query. Before retrieving records, a
2968 query must be performed using \helpref{wxDbTable::Query}{wxdbtablequery},
2969 \helpref{wxDbTable::QueryOnKeyFields}{wxdbtablequeryonkeyfields},
2970 \helpref{wxDbTable::QueryMatching}{wxdbtablequerymatching} or
2971 \helpref{wxDbTable::QueryBySqlStmt}{wxdbtablequerybysqlstmt}.
2972
2973 \wxheading{Return value}
2974
2975 This function returns FALSE when the current cursor has reached the beginning
2976 of the result set and there are now other rows prior to the cursors current
2977 position. When FALSE is returned, data in the bound columns is undefined.
2978
2979 \wxheading{Remarks}
2980
2981 This function can only be used if the datasource connection used by the
2982 wxDbTable instance was created with FwdOnlyCursors set to FALSE. If the
2983 connection does not allow backward scrolling cursors, this function will
2984 return FALSE, and the data contained in the bound columns will be undefined.
2985
2986 \wxheading{See also}
2987
2988 \helpref{wxDb::IsFwdOnlyCursors}{wxdbisfwdonlycursors},
2989 \helpref{wxDbTable::--}{wxdbtableminusminus}
2990
2991
2992 \membersection{wxDbTable::GetQueryTableName}\label{wxdbtablegetquerytablename}
2993
2994 \func{const wxString \&}{GetQueryTableName}{}
2995
2996 Accessor function that returns the name of the table/view that was indicated
2997 as being the table/view to query against when this wxDbTable instance was
2998 created.
2999
3000 \wxheading{See also}
3001
3002 \helpref{wxDbTable constructor}{wxdbtableconstr}
3003
3004
3005 \membersection{wxDbTable::GetRowNum}\label{wxdbtablegetrownum}
3006
3007 \func{UWORD}{GetRowNum}{\void}
3008
3009 Returns the ODBC row number for performing positioned updates and deletes.
3010
3011 \wxheading{Remarks}
3012
3013 This function is not being used within the ODBC class library and may be a
3014 candidate for removal if no use is found for it.
3015
3016 Row number with some datasources/ODBC drivers is the position in the result set,
3017 while in others it may be a physical position in the database. Check your
3018 database documentation to find out which behavior is supported.
3019
3020
3021 \membersection{wxDbTable::GetTableName}\label{wxdbtablegettablename}
3022
3023 \func{const wxString \&}{GetTableName}{}
3024
3025 Accessor function that returns the name of the table that was indicated
3026 as being the table that this wxDbTable instance was associated with.
3027
3028
3029 \membersection{wxDbTable::GetTablePath}\label{wxdbtablegettablepath}
3030
3031 \func{const wxString \&}{GetTablePath}{}
3032
3033 Accessor function that returns the path to the data table that was indicated
3034 during creation of this wxDbTable instance.
3035
3036 \wxheading{Remarks}
3037
3038 Currently only applicable to dBase and MS-Access datasources.
3039
3040
3041 \membersection{wxDbTable::GetWhereClause}\label{wxdbtablegetwhereclause}
3042
3043 \func{const wxString \&}{GetWhereClause}{}
3044
3045 Accessor function that returns the current WHERE setting assigned with the
3046 \helpref{wxDbTable::SetWhereClause}{wxdbtablesetwhereclause}
3047
3048 \wxheading{See also}
3049
3050 \helpref{wxDbTable::Where}{wxdbtablewhere}
3051
3052
3053 \membersection{wxDbTable::Insert}\label{wxdbtableinsert}
3054
3055 \func{int }{Insert}{\void}
3056
3057 Inserts a new record into the table being referenced by this wxDbTable
3058 instance. The values in the member variables of the wxDbTable instance are
3059 inserted into the columns of the new row in the database.
3060
3061 \wxheading{Return value}
3062
3063 \begin{verbatim}
3064 DB_SUCCESS Record inserted successfully (value = 1)
3065
3066 DB_FAILURE Insert failed (value = 0)
3067
3068 DB_ERR_INTEGRITY_CONSTRAINT_VIOL
3069 The insert failed due to an integrity
3070 constraint violation (duplicate non-unique
3071 index entry) is attempted.
3072 \end{verbatim}
3073
3074 \wxheading{Remarks}
3075
3076 A \helpref{wxDb::CommitTrans}{wxdbcommittrans} or
3077 \helpref{wxDb::RollbackTrans}{wxdbrollbacktrans} must be called after use of
3078 this function to commit or rollback the insertion.
3079
3080 \wxheading{Example}
3081
3082 \begin{verbatim}
3083 // Incomplete code snippet
3084 wxStrcpy(parts->PartName, "10");
3085 wxStrcpy(parts->PartDesc, "Part #10");
3086 parts->Qty = 1000;
3087 RETCODE retcode = parts->Insert();
3088 switch(retcode)
3089 {
3090 case DB_SUCCESS:
3091 parts->GetDb()->CommitTrans();
3092 return(TRUE);
3093 case DB_ERR_INTEGRITY_CONSTRAINT_VIOL:
3094 // Current data would result in a duplicate key
3095 // on one or more indexes that do not allow duplicates
3096 parts->GetDb()->RollbackTrans();
3097 return(FALSE);
3098 default:
3099 // Insert failed for some unexpected reason
3100 parts->GetDb()->RollbackTrans();
3101 return(FALSE);
3102 }
3103 \end{verbatim}
3104
3105
3106 \membersection{wxDbTable::IsColNull}\label{wxdbtableiscolnull}
3107
3108 \func{bool }{IsColNull}{\param{UWORD }{colNo}} const
3109
3110 Used primarily in the ODBC class library to determine if a column value is
3111 set to "NULL". Works for all data types supported by the ODBC class library.
3112
3113 \wxheading{Parameters}
3114
3115 \docparam{colNo}{The column number of the bound column as defined by the
3116 \helpref{wxDbTable::SetColDefs}{wxdbtablesetcoldefs}
3117 calls which defined the columns accessible to this wxDbTable instance.}
3118
3119 \wxheading{Remarks}
3120
3121 NULL column support is currently not fully implemented as of wxWindows 2.4
3122
3123
3124 \membersection{wxDbTable::IsCursorClosedOnCommit}\label{wxdbtableiscursorclosedoncommit}
3125
3126 \func{bool }{IsCursorClosedOnCommit}{\void}
3127
3128 Accessor function to return information collected during the opening of the
3129 datasource connection that is used by this wxDbTable instance. The result
3130 returned by this function indicates whether an implicit closing of the cursor is
3131 done after a commit on the database connection.
3132
3133 \wxheading{Return value}
3134
3135 Returns TRUE if the cursor associated with this wxDbTable object is closed
3136 after a commit or rollback operation. Returns FALSE otherwise.
3137
3138 \wxheading{Remarks}
3139
3140 If more than one wxDbTable instance used the same database connection, all cursors
3141 which use the database connection are closed on the commit if this function
3142 indicates TRUE.
3143
3144
3145 \membersection{wxDbTable::IsQueryOnly}\label{wxdbtableisqueryonly}
3146
3147 \func{bool }{IsQueryOnly}{}
3148
3149 Accessor function that returns a value indicating if this wxDbTable instance
3150 was created to allow only queries to be performed on the bound columns. If
3151 this function returns TRUE, then no actions may be performed using this
3152 wxDbTable instance that would modify (insert/delete/update) the table's data.
3153
3154
3155 \membersection{wxDbTable::Open}\label{wxdbtableopen}
3156
3157 \func{bool }{Open}{\param{bool }{checkPrivileges=FALSE}, \param{bool }{checkTableExists=TRUE}}
3158
3159 Every wxDbTable instance must be opened before it can be used. This function
3160 checks for the existence of the requested table, binds columns, creates required
3161 cursors, (insert/select and update if connection is not wxDB\_QUERY\_ONLY) and
3162 constructs the insert statement that is to be used for inserting data as a new
3163 row in the datasource.
3164
3165 \wxheading{Parameters}
3166
3167 \docparam{checkPrivileges}{Indicates whether the Open() function should check
3168 whether the current connected user has at least SELECT privileges to access the
3169 table to which they are trying to open. Default is FALSE.}
3170
3171 \docparam{checkTableExists}{Indicates whether the Open() function should check
3172 whether the table exists in the database or not before opening it. Default is TRUE.}
3173
3174 \wxheading{Remarks}
3175
3176 If the function returns a FALSE value due to the table not existing, a log
3177 entry is recorded for the datasource connection indicating the problem
3178 that was detected when checking for table existence. Note that it is usually
3179 best for the calling routine to check for the existence of the table and for
3180 sufficent user privileges to access the table in the mode (wxDB\_QUERY\_ONLY or
3181 !wxDB\_QUERY\_ONLY) before trying to open the table for the best possible
3182 explanation as to why a table cannot be opened.
3183
3184 Checking the user's privileges on a table can be quite time consuming during
3185 the open phase. With most applications, the programmer already knows that the
3186 user has sufficient privileges to access the table, so this check is normally
3187 not required.
3188
3189 For best performance, open the table, and then use the
3190 \helpref{wxDb::TablePrivileges}{wxdbtableprivileges} function
3191 to check the users privileges. Passing a schema to the TablePrivileges()
3192 function can significantly speed up the privileges checks.
3193
3194 \wxheading{See also}
3195
3196 \helpref{wxDb::TableExists}{wxdbtableexists},
3197 \helpref{wxDb::TablePrivileges}{wxdbtableprivileges}
3198
3199
3200 \membersection{wxDbTable::OrderBy}\label{wxdbtableorderby}
3201
3202 \func{const wxString \&}{OrderBy}{}
3203
3204 \func{void}{OrderBy}{\param{const wxString \&}{OrderBy}}
3205
3206 Accessor function for the private class member wxDbTable::orderBy. Can be
3207 used as a synonym for
3208 \helpref{wxDbTable::GetOrderByClause}{wxdbtablegetorderbyclause}
3209 (the first form of this function) or
3210 \helpref{wxDbTable::SetOrderByClause}{wxdbtablesetorderbyclause}
3211 (the second form of this function).
3212
3213 \wxheading{Parameters}
3214
3215 \docparam{OrderBy}{A comma separated list of column names that indicate the
3216 alphabetized/numeric sorting sequence that the result set is to be returned
3217 in. If a FROM clause has also been specified, each column name specified in
3218 the ORDER BY clause should be prefaced with the table name to which the column
3219 belongs using DOT notation (TABLE\_NAME.COLUMN\_NAME).}
3220
3221 \wxheading{Return value}
3222
3223 The first form of this function returns the current value of the wxDbTable
3224 member variable ::orderBy.
3225
3226 The second form of the function has no return value.
3227
3228 \wxheading{See also}
3229
3230 \helpref{wxDbTable::GetOrderByClause}{wxdbtablegetorderbyclause},
3231 \helpref{wxDbTable::SetFromClause}{wxdbtablesetfromclause}
3232
3233
3234 \membersection{wxDbTable::Query}\label{wxdbtablequery}
3235
3236 \func{virtual bool }{Query}{\param{bool }{forUpdate=FALSE}, \param{bool }{distinct=FALSE}}
3237
3238 \wxheading{Parameters}
3239
3240 \docparam{forUpdate}{{\it OPTIONAL}. Gives you the option of locking records
3241 as they are retrieved. If the RDBMS is not capable of the FOR UPDATE clause,
3242 this argument is ignored. See
3243 \helpref{wxDbTable::CanSelectForUpdate}{wxdbtablecanselectforupdate} for
3244 additional information regarding this argument. Default is FALSE.}
3245 \docparam{distinct}{{\it OPTIONAL}. Allows selection of only distinct values
3246 from the query (SELECT DISTINCT ... FROM ...). The notion of DISTINCT
3247 applies to all columns returned in the result set, not individual columns.
3248 Default is FALSE.}
3249
3250 \wxheading{Remarks}
3251
3252 This function queries records from the datasource based on the three
3253 wxDbTable members: "where", "orderBy", and "from". Use
3254 \helpref{wxDbTable::SetWhereClause}{wxdbtablesetwhereclause} to filter on
3255 records to be retrieved (e.g. All users with a first name of "JOHN").
3256 Use \helpref{wxDbTable::SetOrderByClause}{wxdbtablesetorderbyclause} to
3257 change the sequence in which records are returned in the result set from
3258 the datasource (e.g. Ordered by LAST\_NAME). Use
3259 \helpref{wxDbTable::SetFromClause}{wxdbtablesetfromclause} to allow outer
3260 joining of the base table (the one being associated with this instance of
3261 wxDbTable) with other tables which share a related field.
3262
3263 After each of these clauses are set/cleared, call wxDbTable::Query() to
3264 fetch the result set from the datasource.
3265
3266 This scheme has an advantage if you have to requery your record set
3267 frequently in that you only have to set your WHERE, ORDER BY, and FROM
3268 clauses once. Then to refresh the record set, simply call wxDbTable::Query()
3269 as frequently as needed.
3270
3271 Note that repeated calls to wxDbTable::Query() may tax the database
3272 server and make your application sluggish if done too frequently or
3273 unnecessarily.
3274
3275 The base table name is automatically prepended to the base column names in
3276 the event that the FROM clause has been set (is non-null) using
3277 \helpref{wxDbTable::SetFromClause}{wxdbtablesetfromclause}.
3278
3279 The cursor for the result set is positioned {\it before} the first record in
3280 the result set after the query. To retrieve the first record, call either
3281 \helpref{wxDbTable::GetFirst}{wxdbtablegetfirst} (only if backward scrolling
3282 cursors are available) or
3283 \helpref{wxDbTable::GetNext}{wxdbtablegetnext}. Typically, no data from the
3284 result set is returned to the client driver until a request such as
3285 \helpref{wxDbTable::GetNext}{wxdbtablegetnext} is performed, so network
3286 traffic and database load are not overwhelmed transmitting data until the
3287 data is actually requested by the client. This behavior is solely dependent
3288 on the ODBC driver though, so refer to the ODBC driver's reference material
3289 for information on its behaviors.
3290
3291 Values in the bound columns' memory variables are undefined after executing a
3292 call to this function and remain that way until a row in the result set is
3293 requested to be returned.
3294
3295 The wxDbTable::Query() function is defined as "virtual" so that it may be
3296 overridden for application specific purposes.
3297
3298 \normalbox{Be sure to set the wxDbTable's "where", "orderBy", and "from"
3299 member variables to "" if they are not to be used in the query. Otherwise,
3300 the results returned may have unexpected results (or no results) due to
3301 improper or incorrect query parameters constructed from the uninitialized
3302 clauses.}
3303
3304 \wxheading{Example}
3305
3306 \begin{verbatim}
3307 // Incomplete code sample
3308 parts->SetWhereClause("DESCRIPTION = 'FOOD'");
3309 parts->SetOrderByClause("EXPIRATION_DATE");
3310 parts->SetFromClause("");
3311 // Query the records based on the where, orderBy and from clauses
3312 // specified above
3313 parts->Query();
3314 // Display all records queried
3315 while(parts->GetNext())
3316 dispPart(parts); // user defined function
3317 \end{verbatim}
3318
3319
3320 \membersection{wxDbTable::QueryBySqlStmt}\label{wxdbtablequerybysqlstmt}
3321
3322 \func{bool}{QueryBySqlStmt}{\param{const wxString \&}{pSqlStmt}}
3323
3324 Performs a query against the datasource by accepting and passing verbatim the
3325 SQL SELECT statement passed to the function.
3326
3327 \wxheading{Parameters}
3328
3329 \docparam{pSqlStmt}{Pointer to the SQL SELECT statement to be executed.}
3330
3331 \wxheading{Remarks}
3332
3333 This is the most powerful form of the query functions available. This member
3334 function allows a programmer to write their own custom SQL SELECT statement
3335 for requesting data from the datasource. This gives the programmer access
3336 to the full power of SQL for performing operations such as scalar functions,
3337 aggregate functions, table joins, and sub-queries, as well as datasource
3338 specific function calls.
3339
3340 The requirements of the SELECT statement are the following:
3341
3342 \begin{verbatim}
3343 1. Must return the correct number of columns. In the derived
3344 wxDbTable constructor, it is specified how many columns are in
3345 the wxDbTable object. The SELECT statement must return exactly
3346 that many columns.
3347
3348 2. The columns must be returned in the same sequence as specified
3349 when defining the bounds columns using wxDbTable::SetColDefs(),
3350 and the columns returned must be of the proper data type. For
3351 example, if column 3 is defined in the wxDbTable bound column
3352 definitions to be a float, the SELECT statement must return a
3353 float for column 3 (e.g. PRICE * 1.10 to increase the price by
3354 10%).
3355
3356 3. The ROWID can be included in your SELECT statement as the {\bf last}
3357 column selected, if the datasource supports it. Use
3358 wxDbTable::CanUpdByROWID() to determine if the ROWID can be
3359 selected from the datasource. If it can, much better
3360 performance can be achieved on updates and deletes by including
3361 the ROWID in the SELECT statement.
3362 \end{verbatim}
3363
3364 Even though data can be selected from multiple tables (joins) in your select
3365 statement, only the base table associated with this wxDbTable object
3366 is automatically updated through the ODBC class library. Data from multiple
3367 tables can be selected for display purposes however. Include columns in
3368 the wxDbTable object and mark them as non-updateable (See
3369 \helpref{wxDbColDef}{wxdbcoldef} for details). This way columns can be
3370 selected and displayed from other tables, but only the base table will be
3371 updated automatically when performed through the
3372 \helpref{wxDbTable::Update}{wxdbtableupdate} function after using this type of
3373 query. To update tables other than the base table, use the
3374 \helpref{wxDbTable::Update}{wxdbtableupdate} function passing a SQL statement.
3375
3376 After this function has been called, the cursor is positioned before the
3377 first record in the record set. To retrieve the first record, call
3378 either \helpref{wxDbTable::GetFirst}{wxdbtablegetfirst} or
3379 \helpref{wxDbTable::GetNext}{wxdbtablegetnext}.
3380
3381 \wxheading{Example}
3382
3383 \begin{verbatim}
3384 // Incomplete code samples
3385 wxString sqlStmt;
3386 sqlStmt = "SELECT * FROM PARTS WHERE STORAGE_DEVICE = 'SD98' \
3387 AND CONTAINER = 12";
3388 // Query the records using the SQL SELECT statement above
3389 parts->QueryBySqlStmt(sqlStmt);
3390 // Display all records queried
3391 while(parts->GetNext())
3392 dispPart(&parts);
3393
3394 Example SQL statements
3395 ----------------------
3396
3397 // Table Join returning 3 columns
3398 SELECT part_no, part_desc, sd_name
3399 from parts, storage_devices
3400 where parts.storage_device_id =
3401 storage_devices.storage_device_id
3402
3403 // Aggregate function returning total number of
3404 // parts in container 99
3405 SELECT count(*) from PARTS where container = 99
3406
3407 // Order by clause; ROWID, scalar function
3408 SELECT part_no, substring(part_desc, 1, 10), qty_on_hand + 1, ROWID
3409 from parts
3410 where warehouse = 10
3411 order by part_no desc // descending order
3412
3413 // Subquery
3414 SELECT * from parts
3415 where container in (select container
3416 from storage_devices
3417 where device_id = 12)
3418 \end{verbatim}
3419
3420
3421 \membersection{wxDbTable::QueryMatching}\label{wxdbtablequerymatching}
3422
3423 \func{virtual bool }{QueryMatching}{\param{bool }{forUpdate=FALSE},
3424 \param{bool }{distinct=FALSE}}
3425
3426 QueryMatching allows querying of records from the table associated with
3427 the wxDbTable object by matching "columns" to values.
3428
3429 For example: To query the datasource for the row with a PART\_NUMBER column
3430 value of "32", clear all column variables of the wxDbTable object, set the
3431 PartNumber variable that is bound to the PART\_NUMBER column in the wxDbTable
3432 object to "32", and then call wxDbTable::QueryMatching().
3433
3434 \wxheading{Parameters}
3435
3436 \docparam{forUpdate}{{\it OPTIONAL}. Gives you the option of locking records
3437 as they are queried (SELECT ... FOR UPDATE). If the RDBMS is not capable of
3438 the FOR UPDATE clause, this argument is ignored. See
3439 \helpref{wxDbTable::CanSelectForUpdate}{wxdbtablecanselectforupdate} for
3440 additional information regarding this argument. Default is FALSE.}
3441 \docparam{distinct}{{\it OPTIONAL}. Allows selection of only distinct values
3442 from the query (SELECT DISTINCT ... FROM ...). The notion of DISTINCT
3443 applies to all columns returned in the result set, not individual columns.
3444 Default is FALSE.}
3445
3446 \wxheading{Remarks}
3447
3448 The SQL WHERE clause is built by the ODBC class library based on all
3449 non-zero/non-NULL columns in your wxDbTable object. Matches can be on one,
3450 many or all of the wxDbTable's columns. The base table name is prepended
3451 to the column names in the event that the wxDbTable's FROM clause is non-null.
3452
3453 This function cannot be used to perform queries which will check for
3454 columns that are 0 or NULL, as the automatically constructed WHERE clause
3455 only will contain comparisons on column member variables that are
3456 non-zero/non-NULL.
3457
3458 The primary difference between this function and \helpref{wxDbTable::QueryOnKeyFields}{wxdbtablequeryonkeyfields}
3459 is that this function can query on any column(s) in the wxDbTable object.
3460 Note however that this may not always be very efficient. Searching on
3461 non-indexed columns will always require a full table scan.
3462
3463 The cursor is positioned before the first record in the record set after
3464 the query is performed. To retrieve the first record, the program must call
3465 either \helpref{wxDbTable::GetFirst}{wxdbtablegetfirst} or
3466 \helpref{wxDbTable::GetNext}{wxdbtablegetnext}.
3467
3468 WHERE and FROM clauses specified using \helpref{wxDbTable::SetWhereClause}{wxdbtablesetwhereclause}
3469 and \helpref{wxDbTable::SetFromClause}{wxdbtablesetfromclause} are ignored by
3470 this function.
3471
3472 \wxheading{Example}
3473
3474 \begin{verbatim}
3475 // Incomplete code sample
3476 parts->ClearMemberVars(); // Set all columns to zero
3477 wxStrcpy(parts->PartNumber,"32"); // Set columns to query on
3478 parts->OnHold = TRUE;
3479 parts->QueryMatching(); // Query
3480 // Display all records queried
3481 while(parts->GetNext())
3482 dispPart(parts); // Some application defined function
3483 \end{verbatim}
3484
3485
3486 \membersection{wxDbTable::QueryOnKeyFields}\label{wxdbtablequeryonkeyfields}
3487
3488 \func{bool }{QueryOnKeyFields}{\param{bool }{forUpdate=FALSE},
3489 \param{bool }{distinct=FALSE}}
3490
3491 QueryOnKeyFields provides an easy mechanism to query records in the table
3492 associated with the wxDbTable object by the primary index column(s). Simply
3493 assign the primary index column(s) values and then call this member function
3494 to retrieve the record.
3495
3496 Note that since primary indexes are always unique, this function implicitly
3497 always returns a single record from the database. The base table name is
3498 prepended to the column names in the event that the wxDbTable's FROM clause
3499 is non-null.
3500
3501 \wxheading{Parameters}
3502
3503 \docparam{forUpdate}{{\it OPTIONAL}. Gives you the option of locking records
3504 as they are queried (SELECT ... FOR UPDATE). If the RDBMS is not capable of
3505 the FOR UPDATE clause, this argument is ignored. See
3506 \helpref{wxDbTable::CanSelectForUpdate}{wxdbtablecanselectforupdate} for
3507 additional information regarding this argument. Default is FALSE.}
3508 \docparam{distinct}{{\it OPTIONAL}. Allows selection of only distinct values
3509 from the query (SELECT DISTINCT ... FROM ...). The notion of DISTINCT
3510 applies to all columns returned in the result set, not individual columns.
3511 Default is FALSE.}
3512
3513 \wxheading{Remarks}
3514
3515 The cursor is positioned before the first record in the record set after
3516 the query is performed. To retrieve the first record, the program must call
3517 either \helpref{wxDbTable::GetFirst}{wxdbtablegetfirst} or
3518 \helpref{wxDbTable::GetNext}{wxdbtablegetnext}.
3519
3520 WHERE and FROM clauses specified using \helpref{wxDbTable::SetWhereClause}{wxdbtablesetwhereclause}
3521 and \helpref{wxDbTable::SetFromClause}{wxdbtablesetfromclause} are ignored by
3522 this function.
3523
3524 \wxheading{Example}
3525
3526 \begin{verbatim}
3527 // Incomplete code sample
3528 wxStrcpy(parts->PartNumber, "32");
3529 parts->QueryOnKeyFields();
3530 // Display all records queried
3531 while(parts->GetNext())
3532 dispPart(parts); // Some application defined function
3533 \end{verbatim}
3534
3535
3536 \membersection{wxDbTable::Refresh}\label{wxdbtablerefresh}
3537
3538 \func{bool}{Refresh}{\void}
3539
3540 This function re-reads the bound columns into the memory variables, setting
3541 them to the current values stored on the disk.
3542
3543 The cursor position and result set are unaffected by calls to this function.
3544 (The one exception is in the case where the record to be refreshed has been
3545 deleted by some other user or transaction since it was originally retrieved
3546 as part of the result set. For most datasources, the default behavior in
3547 this situation is to return the value that was originally queried for the
3548 result set, even though it has been deleted from the database. But this is
3549 datasource dependent, and should be tested before relying on this behavior.)
3550
3551 \wxheading{Remarks}
3552
3553 This routine is only guaranteed to work if the table has a unique primary
3554 index defined for it. Otherwise, more than one record may be fetched and
3555 there is no guarantee that the correct record will be refreshed. The
3556 table's columns are refreshed to reflect the current data in the database.
3557
3558
3559 \membersection{wxDbTable::SetColDefs}\label{wxdbtablesetcoldefs}
3560
3561 \func{void}{SetColDefs}{\param{UWORD }{index}, \param{const wxString \&}{fieldName},
3562 \param{int }{dataType}, \param{void *}{pData}, \param{SWORD }{cType},
3563 \param{int }{size}, \param{bool }{keyField = FALSE}, \param{bool }{upd = TRUE},
3564 \param{bool }{insAllow = TRUE}, \param{bool }{derivedCol = FALSE}}
3565
3566 \func{wxDbColDataPtr *}{SetColDefs}{\param{wxDbColInf *}{colInfs}, \param{UWORD }{numCols}}
3567
3568 \wxheading{Parameters}
3569
3570 \docparam{index}{Column number (0 to n-1, where n is the number of columns
3571 specified as being defined for this wxDbTable instance when the
3572 wxDbTable constructor was called.}
3573 \docparam{fieldName}{Column name from the associated data table.}
3574 \docparam{dataType}{Logical data type. Valid logical types include:}
3575
3576 \begin{verbatim}
3577 DB_DATA_TYPE_VARCHAR : strings
3578 DB_DATA_TYPE_INTEGER : non-floating point numbers
3579 DB_DATA_TYPE_FLOAT : floating point numbers
3580 DB_DATA_TYPE_DATE : dates
3581 \end{verbatim}
3582
3583 \docparam{pData}{Pointer to the data object that will hold the column's
3584 value when a row of data is returned from the datasource.}
3585 \docparam{cType}{SQL C Type. This defines the data type that the SQL
3586 representation of the data is converted to to be stored in {\it pData}.
3587 Other valid types are available also, but these are the most common ones:}
3588
3589 \begin{verbatim}
3590 SQL_C_CHAR // strings
3591 SQL_C_LONG
3592 SQL_C_ULONG
3593 SQL_C_SHORT
3594 SQL_C_USHORT
3595 SQL_C_FLOAT
3596 SQL_C_DOUBLE
3597 SQL_C_NUMERIC
3598 SQL_C_TIMESTAMP
3599
3600 SQL_C_BOOLEAN // defined in db.h
3601 SQL_C_ENUM // defined in db.h
3602 \end{verbatim}
3603
3604 \docparam{size}{Maximum size in bytes of the {\it pData} object.}
3605 \docparam{keyField}{{\it OPTIONAL}. Indicates if this column is part of the
3606 primary index. Default is FALSE.}
3607 \docparam{upd}{{\it OPTIONAL}. Are updates allowed on this column?
3608 Default is TRUE.}
3609 \docparam{insAllow}{{\it OPTIONAL}. Inserts allowed on this column?
3610 Default is TRUE.}
3611 \docparam{derivedCol}{{\it OPTIONAL}. Is this a derived column (non-base
3612 table column for query only)? Default is FALSE.}
3613
3614 \docparam{colInfs}{Pointer to an array of wxDbColInf instances which contains
3615 all the information necessary to create {\it numCols} column definitions.}
3616 \docparam{numCols}{Number of elements of wxDbColInf type that are pointed
3617 to by {\it colInfs}, which are to have column definitions created from them.}
3618
3619 \wxheading{Remarks}
3620
3621 If {\it pData} is to hold a string of characters, be sure to include enough
3622 space for the NULL terminator in pData and in the byte count of {\it size}.
3623
3624 Both forms of this function provide a shortcut for defining the columns in
3625 your wxDbTable object. Use this function in any derived wxDbTable
3626 constructor when describing the column/columns in the wxDbTable object.
3627
3628 The second form of this function is primarily used when the
3629 \helpref{wxDb::GetColumns}{wxdbgetcolumns} function was used to query the
3630 datasource for the column definitions, so that the column definitions are
3631 already stored in wxDbColInf form. One example use of using
3632 \helpref{wxDb::GetColumns}{wxdbgetcolumns} then using this function is if
3633 a data table existed in one datasource, and the table's column definitions
3634 were to be copied over to another datasource or table.
3635
3636 \wxheading{Example}
3637
3638 \begin{verbatim}
3639 // Long way not using this function
3640 wxStrcpy(colDefs[0].ColName, "PART_NO");
3641 colDefs[0].DbDataType = DB_DATA_TYPE_VARCHAR;
3642 colDefs[0].PtrDataObj = PartNumber;
3643 colDefs[0].SqlCtype = SQL_C_CHAR;
3644 colDefs[0].SzDataObj = PART_NUMBER_LEN;
3645 colDefs[0].KeyField = TRUE;
3646 colDefs[0].Updateable = FALSE;
3647 colDefs[0].InsertAllowed= TRUE;
3648 colDefs[0].DerivedCol = FALSE;
3649
3650 // Shortcut using this function
3651 SetColDefs(0, "PART_NUMBER", DB_DATA_TYPE_VARCHAR, PartNumber,
3652 SQL_C_CHAR, PART_NUMBER_LEN, TRUE, FALSE,TRUE,FALSE);
3653 \end{verbatim}
3654
3655
3656 \membersection{wxDbTable::SetCursor}\label{wxdbtablesetcursor}
3657
3658 \func{bool}{SetCursor}{\param{HSTMT *}{hstmtActivate = (void **) wxDB\_DEFAULT\_CURSOR}}
3659
3660 \wxheading{Parameters}
3661
3662 \docparam{hstmtActivate}{{\it OPTIONAL}. Pointer to the cursor that is to
3663 become the current cursor. Passing no cursor handle will reset the cursor
3664 back to the wxDbTable's default (original) cursor that was created when the
3665 wxDbTable instance was first created. Default is wxDB\_DEFAULT\_CURSOR.}
3666
3667 \wxheading{Remarks}
3668
3669 When swapping between cursors, the member variables of the wxDbTable object
3670 are automatically refreshed with the column values of the row that the
3671 current cursor is positioned at (if any). If the cursor is not positioned,
3672 then the data in member variables is undefined.
3673
3674 The only way to return back to the cursor that was in use before this
3675 function was called is to programmatically determine the current cursor's HSTMT
3676 {\bf BEFORE} calling this function using \helpref{wxDbTable::GetCursor}{wxdbtablegetcursor}
3677 and saving a pointer to that cursor.
3678
3679 \wxheading{See also}
3680
3681 \helpref{wxDbTable::GetNewCursor}{wxdbtablegetnewcursor},
3682 \helpref{wxDbTable::GetCursor}{wxdbtablegetcursor},
3683 \helpref{wxDbTable::SetCursor}{wxdbtablesetcursor}
3684
3685
3686 \membersection{wxDbTable::SetFromClause}\label{wxdbtablesetfromclause}
3687
3688 \func{void}{SetFromClause}{\param{const wxString \&}{From}}
3689
3690 Accessor function for setting the private class member wxDbTable::from
3691 that indicates what other tables should be outer joined with the wxDbTable's
3692 base table for access to the columns in those other tables.
3693
3694 Synonym to this function is one form of \helpref{wxDbTable::From}{wxdbtablefrom}
3695
3696 \wxheading{Parameters}
3697
3698 \docparam{From}{A comma separated list of table names that are to be outer
3699 joined with the base table's columns so that the joined table's columns
3700 may be returned in the result set or used as a portion of a comparison with
3701 the base table's columns. NOTE that the base tables name must NOT be included
3702 in the FROM clause, as it is automatically included by the wxDbTable class
3703 in constructing query statements.}
3704
3705 \wxheading{Remarks}
3706
3707 Used by the \helpref{wxDbTable::Query}{wxdbtablequery} and
3708 \helpref{wxDbTable::Count}{wxdbtablecount} member functions to allow outer
3709 joining of records from multiple tables.
3710
3711 Do {\bf not} include the keyword "FROM" when setting the FROM clause.
3712
3713 If using the FROM clause when performing a query, be certain to include in
3714 the corresponding WHERE clause a comparison of a column from either the base
3715 table or one of the other joined tables to each other joined table to ensure
3716 the datasource knows on which column values the tables should be joined on.
3717
3718 \wxheading{Example}
3719
3720 \begin{verbatim}
3721 ...
3722 // Base table is the "LOCATION" table, and it is being
3723 // outer joined to the "PART" table via the the field "PART_NUMBER"
3724 // that can be related between the two tables.
3725 location->SetWhereClause("LOCATION.PART_NUMBER = PART.PART_NUMBER")
3726 location->SetFromClause("PART");
3727 ...
3728 \end{verbatim}
3729
3730 \wxheading{See also}
3731
3732 \helpref{wxDbTable::From}{wxdbtablefrom},
3733 \helpref{wxDbTable::GetFromClause}{wxdbtablegetfromclause}
3734
3735
3736 \membersection{wxDbTable::SetColNull}\label{wxdbtablesetcolnull}
3737
3738 \func{bool}{SetColNull}{\param{UWORD }{colNo}, \param{bool }{set=TRUE}}
3739
3740 \func{bool}{SetColNull}{\param{const wxString \&}{colName},
3741 \param{bool }{set=TRUE}}
3742
3743 Both forms of this function allow a member variable representing a column
3744 in the table associated with this wxDbTable object to be set to NULL.
3745
3746 The first form allows the column to be set by the index into the column
3747 definitions used to create the wxDbTable instance, while the second allows
3748 the actual column name to be specified.
3749
3750 \wxheading{Parameters}
3751
3752 \docparam{colNo}{Index into the column definitions used when first defining
3753 this wxDbTable object.}
3754 \docparam{colName}{Actual data table column name that is to be set to NULL.}
3755 \docparam{set}{Whether the column is set to NULL or not. Passing TRUE sets
3756 the column to NULL, passing FALSE sets the column to be non-NULL. Default is
3757 TRUE.}
3758
3759
3760 \wxheading{Remarks}
3761
3762 No database updates are done by this function. It only operates on the
3763 member variables in memory. Use and insert or update function to store this
3764 value to disk.
3765
3766
3767 \membersection{wxDbTable::SetOrderByClause}\label{wxdbtablesetorderbyclause}
3768
3769 \func{void}{SetOrderByClause}{\param{const wxString \&}{OrderBy}}
3770
3771 Accessor function for setting the private class member wxDbTable::orderBy
3772 which determines sequence/ordering of the rows returned in the result set
3773 of a query.
3774
3775 A synonym to this function is one form of the function \helpref{wxDbTable::OrderBy}{wxdbtableorderby}
3776
3777 \wxheading{Parameters}
3778
3779 \docparam{OrderBy}{A comma separated list of column names that indicate the
3780 alphabetized sorting sequence that the result set is to be returned in. If
3781 a FROM clause has also been specified, each column name specified in the
3782 ORDER BY clause should be prefaced with the table name to which the column
3783 belongs using DOT notation (TABLE\_NAME.COLUMN\_NAME).}
3784
3785 \wxheading{Remarks}
3786
3787 Do {\bf not} include the keywords "ORDER BY" when setting the ORDER BY clause.
3788
3789 \wxheading{Example}
3790
3791 \begin{verbatim}
3792 ...
3793 parts->SetOrderByClause("PART_DESCRIP, QUANTITY");
3794 ...
3795
3796 ...
3797 location->SetOrderByClause("LOCATION.POSITION, PART.PART_NUMBER);
3798 ...
3799 \end{verbatim}
3800
3801 \wxheading{See also}
3802
3803 \helpref{wxDbTable::OrderBy}{wxdbtableorderby},
3804 \helpref{wxDbTable::GetOrderByClause}{wxdbtablegetorderbyclause}
3805
3806
3807 \membersection{wxDbTable::SetQueryTimeout}\label{wxdbtablesetquerytimeout}
3808
3809 \func{bool}{SetQueryTimeout}{\param{UDWORD }{nSeconds}}
3810
3811 Allows a time period to be set as the timeout period for queries.
3812
3813 \wxheading{Parameters}
3814
3815 \docparam{nSeconds}{The number of seconds to wait for the query to complete
3816 before timing out.}
3817
3818 \wxheading{Remarks}
3819
3820 Neither Oracle or Access support this function as of yet. Other databases
3821 should be evaluated for support before depending on this function working
3822 correctly.
3823
3824
3825 \membersection{wxDbTable::SetWhereClause}\label{wxdbtablesetwhereclause}
3826
3827 \func{void}{SetWhereClause}{\param{const wxString \&}{Where}}
3828
3829 Accessor function for setting the private class member wxDbTable::where
3830 that determines which rows are returned in the result set by the datasource.
3831
3832 A synonym to this function is one form of the function \helpref{wxDbTable::Where}{wxdbtablewhere}
3833
3834 \wxheading{Parameters}
3835
3836 \docparam{Where}{SQL "where" clause. This clause can contain any SQL language
3837 that is legal in standard where clauses. If a FROM clause has also been
3838 specified, each column name specified in the ORDER BY clause should be
3839 prefaced with the table name to which the column belongs using DOT notation
3840 (TABLE\_NAME.COLUMN\_NAME).}
3841
3842 \wxheading{Remarks}
3843
3844 Do {\bf not} include the keywords "WHERE" when setting the WHERE clause.
3845
3846 \wxheading{Example}
3847
3848 \begin{verbatim}
3849 ...
3850 // Simple where clause
3851 parts->SetWhereClause("PART_NUMBER = '32'");
3852 ...
3853 // Any comparison operators
3854 parts->SetWhereClause("PART_DESCRIP LIKE 'HAMMER%'");
3855 ...
3856 // Multiple comparisons, including a function call
3857 parts->Where("QTY > 0 AND {fn UCASE(PART_DESCRIP)} LIKE '%DRILL%'");
3858 ...
3859 // Using parameters and multiple logical combinations
3860 parts->Where("((QTY > 10) OR (ON_ORDER > 0)) AND ON_HOLD = 0");
3861 ...
3862 // This query uses an outer join (requiring a FROM clause also)
3863 // that joins the PART and LOCATION table on he common field
3864 // PART_NUMBER.
3865 parts->Where("PART.ON_HOLD = 0 AND \
3866 PART.PART_NUMBER = LOCATION.PART_NUMBER AND \
3867 LOCATION.PART_NUMBER > 0");
3868 \end{verbatim}
3869
3870 \wxheading{See also}
3871
3872 \helpref{wxDbTable::Where}{wxdbtablewhere},
3873 \helpref{wxDbTable::GetWhereClause}{wxdbtablegetwhereclause}
3874
3875
3876 \membersection{wxDbTable::Update}\label{wxdbtableupdate}
3877
3878 \func{bool }{Update}{\void}
3879
3880 \func{bool }{Update}{\param{const wxString \&}{pSqlStmt}}
3881
3882 The first form of this function will update the row that the current cursor
3883 is currently positioned at with the values in the memory variables that
3884 are bound to the columns. The actual SQL statement to perform the update
3885 is automatically created by the ODBC class, and then executed.
3886
3887 The second form of the function allows full access through SQL statements for
3888 updating records in the database. Write any valid SQL UPDATE statement and
3889 submit it to this function for execution. Sophisticated updates can be
3890 performed using the full power of the SQL dialect. The full SQL statement
3891 must have the exact syntax required by the driver/datasource for performing
3892 the update. This usually is in the form of:
3893
3894 \begin{verbatim}
3895 UPDATE tablename SET col1=X, col2=Y, ... where ...
3896 \end{verbatim}
3897
3898 \wxheading{Parameters}
3899
3900 \docparam{pSqlStmt}{Pointer to SQL UPDATE statement to be executed.}
3901
3902 \wxheading{Remarks}
3903
3904 A \helpref{wxDb::CommitTrans}{wxdbcommittrans} or
3905 \helpref{wxDb::RollbackTrans}{wxdbrollbacktrans} must be called after use of
3906 this function to commit or rollback the update.
3907
3908 \wxheading{Example}
3909
3910 \begin{verbatim}
3911 wxString sqlStmt;
3912 sqlStmt = "update PART set QTY = 0 where PART_NUMBER = '32'";
3913 \end{verbatim}
3914
3915
3916 \membersection{wxDbTable::UpdateWhere}\label{wxdbtableupdatewhere}
3917
3918 \func{bool}{UpdateWhere}{\param{const wxString \&}{pWhereClause}}
3919
3920 Performs updates to the base table of the wxDbTable object, updating only the
3921 rows which match the criteria specified in the {\it pWhereClause}.
3922
3923 All columns that are bound to member variables for this wxDbTable instance
3924 that were defined with the "updateable" parameter set to TRUE will be updated
3925 with the information currently held in the memory variable.
3926
3927 \wxheading{Parameters}
3928
3929 \docparam{pWhereClause}{Pointer to a valid SQL WHERE clause. Do not
3930 include the keyword 'WHERE'.}
3931
3932 \wxheading{Remarks}
3933
3934 Care should be used when updating columns that are part of indexes with
3935 this function so as not to violate an unique key constraints.
3936
3937 A \helpref{wxDb::CommitTrans}{wxdbcommittrans} or
3938 \helpref{wxDb::RollbackTrans}{wxdbrollbacktrans} must be called after use of
3939 this function to commit or rollback the update(s).
3940
3941
3942 \membersection{wxDbTable::Where}\label{wxdbtablewhere}
3943
3944 \func{const wxString \&}{Where}{}
3945
3946 \func{void}{Where}{\param{const wxString\& }{Where}}
3947
3948 Accessor function for the private class member wxDbTable::where. Can be used
3949 as a synonym for \helpref{wxDbTable::GetWhereClause}{wxdbtablegetwhereclause}
3950 (the first form of this function) to return the current where clause or
3951 \helpref{wxDbTable::SetWhereClause}{wxdbtablesetwhereclause} (the second form
3952 of this function) to set the where clause for this table instance.
3953
3954 \wxheading{Parameters}
3955
3956 \docparam{Where}{A valid SQL WHERE clause. Do not include the keyword 'WHERE'.}
3957
3958 \wxheading{Return value}
3959
3960 The first form of this function returns the current value of the wxDbTable
3961 member variable ::where.
3962
3963 The second form of the function has no return value, as it will always set
3964 the where clause successfully.
3965
3966 \wxheading{See also}
3967
3968 \helpref{wxDbTable::GetWhereClause}{wxdbtablegetwhereclause},
3969 \helpref{wxDbTable::SetWhereClause}{wxdbtablesetwhereclause}
3970
3971
3972
3973 \membersection{wxDbTable::operator $++$}\label{wxdbtableplusplus}
3974
3975 \func{bool}{operator $++$}{\void}
3976
3977 Synonym for \helpref{wxDbTable::GetNext}{wxdbtablegetnext}
3978
3979 \wxheading{See also}
3980
3981 \helpref{wxDbTable::GetNext}{wxdbtablegetnext}
3982
3983
3984 \membersection{wxDbTable::operator $--$}\label{wxdbtableminusminus}
3985
3986 \func{bool}{operator $--$}{\void}
3987
3988 Synonym for \helpref{wxDbTable::GetPrev}{wxdbtablegetprev}
3989
3990 \wxheading{See also}
3991
3992 \helpref{wxDbTable::GetPrev}{wxdbtablegetprev}
3993
3994
3995 \section{\class{wxDbTableInf}}\label{wxdbtableinf}
3996
3997 \begin{verbatim}
3998 tableName[0] = 0;
3999 tableType[0] = 0;
4000 tableRemarks[0] = 0;
4001 numCols = 0;
4002 pColInf = NULL;
4003 \end{verbatim}
4004
4005
4006 Currently only used by \helpref{wxDb::GetCatalog}{wxdbgetcatalog} internally
4007 and \helpref{wxDbInf}{wxdbinf} class, but may be used in future releases for
4008 user functions. Contains information describing the table (Name, type, etc).
4009 A pointer to a wxDbColInf array instance is included so a program can create a
4010 \helpref{wxDbColInf}{wxdbcolinf} array instance (using
4011 \helpref{wxDb::GetColumns}{wxdbgetcolumns})
4012 to maintain all information about the columns of a table in one memory
4013 structure.
4014
4015 Eventually, accessor functions will be added for this class
4016
4017 \membersection{wxDbTableInf::Initialize}\label{wxdbtableinfinitialize}
4018
4019 Simply initializes all member variables to a cleared state. Called by
4020 the constructor automatically.
4021