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