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