]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/database.tex
added wxJPEGHandler
[wxWidgets.git] / docs / latex / wx / database.tex
CommitLineData
a660d684
KB
1\section{\class{wxDatabase}}\label{wxdatabase}
2
3Every database object represents an ODBC connection. The connection may be closed and reopened.
4
5\wxheading{Derivation}
6
7\helpref{wxObject}{wxobject}
8
9\wxheading{See also}
10
11\overview{wxDatabase overview}{wxdatabaseoverview}, \helpref{wxRecordSet}{wxrecordset}
12
13\latexignore{\rtfignore{\wxheading{Members}}}
14
15\membersection{wxDatabase::wxDatabase}
16
17\func{}{wxDatabase}{\void}
18
19Constructor. The constructor of the first wxDatabase instance of an
20application initializes the ODBC manager.
21
22\membersection{wxDatabase::\destruct{wxDatabase}}
23
24\func{}{\destruct{wxDatabase}}{\void}
25
26Destructor. Resets and destroys any associated wxRecordSet instances.
27
28The destructor of the last wxDatabase instance will deinitialize
29the ODBC manager.
30
31\membersection{wxDatabase::BeginTrans}
32
33\func{bool}{BeginTrans}{\void}
34
35Not implemented.
36
37\membersection{wxDatabase::Cancel}
38
39\func{void}{Cancel}{\void}
40
41Not implemented.
42
43\membersection{wxDatabase::CanTransact}
44
45\func{bool}{CanTransact}{\void}
46
47Not implemented.
48
49
50\membersection{wxDatabase::CanUpdate}
51
52\func{bool}{CanUpdate}{\void}
53
54Not implemented.
55
56\membersection{wxDatabase::Close}
57
58\func{bool}{Close}{\void}
59
60Resets the statement handles of any associated wxRecordSet objects,
61and disconnects from the current data source.
62
63\membersection{wxDatabase::CommitTrans}
64
65\func{bool}{CommitTrans}{\void}
66
67Commits previous transactions. Not implemented.
68
69\membersection{wxDatabase::ErrorOccured}
70
71\func{bool}{ErrorOccured}{\void}
72
73Returns TRUE if the last action caused an error.
74
75\membersection{wxDatabase::ErrorSnapshot}
76
77\func{void}{ErrorSnapshot}{\param{HSTMT}{ statement = SQL\_NULL\_HSTMT}}
78
79This function will be called whenever an ODBC error occured. It stores the
80error related information returned by ODBC. If a statement handle of the
81concerning ODBC action is available it should be passed to the function.
82
83\membersection{wxDatabase::GetDatabaseName}
84
85\func{wxString}{GetDatabaseName}{\void}
86
87Returns the name of the database associated with the current connection.
88
89\membersection{wxDatabase::GetDataSource}
90
91\func{wxString}{GetDataSource}{\void}
92
93Returns the name of the connected data source.
b8de493f 94
a660d684
KB
95\membersection{wxDatabase::GetErrorClass}
96
97\func{wxString}{GetErrorClass}{\void}
98
99Returns the error class of the last error. The error class consists of
100five characters where the first two characters contain the class
101and the other three characters contain the subclass of the ODBC error.
102See ODBC documentation for further details.
103
104\membersection{wxDatabase::GetErrorCode}
105
106\func{wxRETCODE}{GetErrorCode}{\void}
107
108Returns the error code of the last ODBC function call. This will be one of:
109
110\begin{twocollist}\itemsep=0pt
111\twocolitem{SQL\_ERROR}{General error.}
112\twocolitem{SQL\_INVALID\_HANDLE}{An invalid handle was passed to an ODBC function.}
113\twocolitem{SQL\_NEED\_DATA}{ODBC expected some data.}
114\twocolitem{SQL\_NO\_DATA\_FOUND}{No data was found by this ODBC call.}
115\twocolitem{SQL\_SUCCESS}{The call was successful.}
116\twocolitem{SQL\_SUCCESS\_WITH\_INFO}{The call was successful, but further information can be
117obtained from the ODBC manager.}
118\end{twocollist}
119
120\membersection{wxDatabase::GetErrorMessage}
121
122\func{wxString}{GetErrorMessage}{\void}
123
124Returns the last error message returned by the ODBC manager.
125
126\membersection{wxDatabase::GetErrorNumber}
127
128\func{long}{GetErrorNumber}{\void}
129
130Returns the last native error. A native error is an ODBC driver dependent
131error number.
132
133\membersection{wxDatabase::GetHDBC}
134
135\func{HDBC}{GetHDBC}{\void}
136
137Returns the current ODBC database handle.
138
139\membersection{wxDatabase::GetHENV}
140
141\func{HENV}{GetHENV}{\void}
142
143Returns the ODBC environment handle.
b8de493f 144
a660d684
KB
145\membersection{wxDatabase::GetInfo}
146
147\func{bool}{GetInfo}{\param{long}{ infoType}, \param{long *}{buf}}
148
149\func{bool}{GetInfo}{\param{long}{ infoType}, \param{const wxString\& }{buf}, \param{int}{ bufSize=-1}}
150
151Returns requested information. The return value is TRUE if successful, FALSE otherwise.
152
153{\it infoType} is an ODBC identifier specifying the type of information to be returned.
154
155{\it buf} is a character or long integer pointer to storage which must be allocated by the
156application, and which will contain the information if the function is successful.
157
158{\it bufSize} is the size of the character buffer. A value of -1 indicates that the size
159should be computed by the GetInfo function.
160
161\membersection{wxDatabase::GetPassword}
162
163\func{wxString}{GetPassword}{\void}
164
165Returns the password of the current user.
166
167\membersection{wxDatabase::GetUsername}
168
169\func{wxString}{GetUsername}{\void}
170
171Returns the current username.
172
173\membersection{wxDatabase::GetODBCVersionFloat}
174
175\func{float}{GetODBCVersionFloat}{\param{bool}{ implementation=TRUE}}
176
177Returns the version of ODBC in floating point format, e.g. 2.50.
178
179{\it implementation} should be TRUE to get the DLL version, or FALSE to get the
180version defined in the {\tt sql.h} header file.
181
182This function can return the value 0.0 if the header version number is not defined (for early
183versions of ODBC).
184
185\membersection{wxDatabase::GetODBCVersionString}
186
187\func{wxString}{GetODBCVersionString}{\param{bool}{ implementation=TRUE}}
188
189Returns the version of ODBC in string format, e.g. ``02.50".
190
191{\it implementation} should be TRUE to get the DLL version, or FALSE to get the
192version defined in the {\tt sql.h} header file.
193
194This function can return the value ``00.00" if the header version number is not defined (for early
195versions of ODBC).
196
197\membersection{wxDatabase::InWaitForDataSource}
198
199\func{bool}{InWaitForDataSource}{\void}
200
201Not implemented.
202
203\membersection{wxDatabase::IsOpen}
204
205\func{bool}{IsOpen}{\void}
206
207Returns TRUE if a connection is open.
208
209\membersection{wxDatabase::Open}\label{wxdatabaseopen}
210
211\func{bool}{Open}{\param{const wxString\& }{datasource}, \param{bool}{ exclusive = FALSE}, \param{bool }{readOnly = TRUE},
212 \param{const wxString\& }{username = ``ODBC"}, \param{const wxString\& }{password = ``"}}
213
214Connect to a data source. {\it datasource} contains the name of the ODBC data
215source. The parameters exclusive and readOnly are not used.
216
217\membersection{wxDatabase::OnSetOptions}
218
219\func{void}{OnSetOptions}{\param{wxRecordSet *}{recordSet}}
220
221Not implemented.
b8de493f 222
a660d684
KB
223\membersection{wxDatabase::OnWaitForDataSource}
224
225\func{void}{OnWaitForDataSource}{\param{bool}{ stillExecuting}}
226
227Not implemented.
228
229\membersection{wxDatabase::RollbackTrans}
230
231\func{bool}{RollbackTrans}{\void}
232
233Sends a rollback to the ODBC driver. Not implemented.
234
235\membersection{wxDatabase::SetDataSource}
236
237\func{void}{SetDataSource}{\param{const wxString\& }{s}}
238
239Sets the name of the data source. Not implemented.
b8de493f 240
a660d684
KB
241\membersection{wxDatabase::SetLoginTimeout}
242
243\func{void}{SetLoginTimeout}{\param{long}{ seconds}}
244
245Sets the time to wait for an user login. Not implemented.
b8de493f 246
a660d684
KB
247\membersection{wxDatabase::SetPassword}
248
249\func{void}{SetPassword}{\param{const wxString\& }{s}}
250
251Sets the password of the current user. Not implemented.
252
253\membersection{wxDatabase::SetSynchronousMode}
254
255\func{void}{SetSynchronousMode}{\param{bool }{synchronous}}
256
257Toggles between synchronous and asynchronous mode. Currently only synchronous
258mode is supported, so this function has no effect.
259
260\membersection{wxDatabase::SetQueryTimeout}
261
262\func{void}{SetQueryTimeout}{\param{long}{ seconds}}
263
264Sets the time to wait for a response to a query. Not implemented.
b8de493f 265
a660d684
KB
266\membersection{wxDatabase::SetUsername}
267
268\func{void}{SetUsername}{\param{const wxString\& }{s}}
269
270Sets the name of the current user. Not implemented.
271
272