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