sl@0
|
1 |
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#if !defined(__D32DBMS_H__)
|
sl@0
|
17 |
#define __D32DBMS_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef __S32STD_H__
|
sl@0
|
20 |
#include <s32std.h>
|
sl@0
|
21 |
#endif
|
sl@0
|
22 |
#ifndef __F32FILE_H__
|
sl@0
|
23 |
#include <f32file.h>
|
sl@0
|
24 |
#endif
|
sl@0
|
25 |
|
sl@0
|
26 |
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
27 |
#include <d32dbmsconstants.h>
|
sl@0
|
28 |
#endif
|
sl@0
|
29 |
|
sl@0
|
30 |
// other classes referenced
|
sl@0
|
31 |
class RFs;
|
sl@0
|
32 |
class CDbObject;
|
sl@0
|
33 |
class CDbRowConstraint;
|
sl@0
|
34 |
class CDbCursor;
|
sl@0
|
35 |
class CDbDatabase;
|
sl@0
|
36 |
class CDbIncremental;
|
sl@0
|
37 |
class CDbNotifier;
|
sl@0
|
38 |
class TDbColumn;
|
sl@0
|
39 |
class TDbColumnC;
|
sl@0
|
40 |
|
sl@0
|
41 |
// classes defined
|
sl@0
|
42 |
class TDbCol;
|
sl@0
|
43 |
class CDbColSet;
|
sl@0
|
44 |
class TDbColSetIter;
|
sl@0
|
45 |
class TDbKeyCol;
|
sl@0
|
46 |
class CDbKey;
|
sl@0
|
47 |
class TDbBookmark;
|
sl@0
|
48 |
class TDbQuery;
|
sl@0
|
49 |
class RDbHandleBase;
|
sl@0
|
50 |
template<class T> class RDbHandle;
|
sl@0
|
51 |
class RDbRowConstraint;
|
sl@0
|
52 |
class RDbRowSet;
|
sl@0
|
53 |
class RDbColReadStream;
|
sl@0
|
54 |
class RDbColWriteStream;
|
sl@0
|
55 |
class TDbWindow;
|
sl@0
|
56 |
class RDbView;
|
sl@0
|
57 |
template<class T> class TUnion;
|
sl@0
|
58 |
class TDbLookupKey;
|
sl@0
|
59 |
class TDbSeekKey;
|
sl@0
|
60 |
template<TInt S> class TDbSeekMultiKey;
|
sl@0
|
61 |
class RDbTable;
|
sl@0
|
62 |
class CDbNames;
|
sl@0
|
63 |
class RDbDatabase;
|
sl@0
|
64 |
class RDbIncremental;
|
sl@0
|
65 |
class RDbUpdate;
|
sl@0
|
66 |
class RDbNotifier;
|
sl@0
|
67 |
class RDbs;
|
sl@0
|
68 |
class RDbNamedDatabase;
|
sl@0
|
69 |
class RDbStoreDatabase;
|
sl@0
|
70 |
|
sl@0
|
71 |
/**
|
sl@0
|
72 |
The maximum length for a DBMS name: 64 characters.
|
sl@0
|
73 |
@publishedAll
|
sl@0
|
74 |
@released
|
sl@0
|
75 |
*/
|
sl@0
|
76 |
const TInt KDbMaxName=0x40;
|
sl@0
|
77 |
|
sl@0
|
78 |
/**
|
sl@0
|
79 |
The maximum length for a DBMS column name: 64 characters.
|
sl@0
|
80 |
@publishedAll
|
sl@0
|
81 |
@released
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
const TInt KDbMaxColName=KDbMaxName;
|
sl@0
|
84 |
|
sl@0
|
85 |
/**
|
sl@0
|
86 |
Represents a writable DBMS name. It maps to a modifiable buffer descriptor
|
sl@0
|
87 |
with maximum size KDbMaxName.
|
sl@0
|
88 |
|
sl@0
|
89 |
Notes:
|
sl@0
|
90 |
|
sl@0
|
91 |
A DBMS name must begin with an alphabetic character, after which any alphabetic,
|
sl@0
|
92 |
numeric or the _ (underscore) character may be used. DBMS names are also limited
|
sl@0
|
93 |
to 64 characters in length.
|
sl@0
|
94 |
|
sl@0
|
95 |
Table names must be unique within a database, and columns and indexes must
|
sl@0
|
96 |
have unique names within the table to which they belong. For the purposes
|
sl@0
|
97 |
of uniqueness and identification, the names are folded before comparison,
|
sl@0
|
98 |
so two columns named column_one and Column_ONE are considered to have the
|
sl@0
|
99 |
same name.
|
sl@0
|
100 |
|
sl@0
|
101 |
@see TBuf
|
sl@0
|
102 |
@publishedAll
|
sl@0
|
103 |
@released
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
typedef TBuf<KDbMaxName> TDbName;
|
sl@0
|
106 |
|
sl@0
|
107 |
/** Represents a non-writeable DBMS name. It maps to a non modifiable buffer descriptor
|
sl@0
|
108 |
with maximum size KDbMaxName.
|
sl@0
|
109 |
|
sl@0
|
110 |
Notes:
|
sl@0
|
111 |
|
sl@0
|
112 |
A DBMS name must begin with an alphabetic character, after which any alphabetic,
|
sl@0
|
113 |
numeric or the _ (underscore) character may be used. DBMS names are also limited
|
sl@0
|
114 |
to 64 characters in length.
|
sl@0
|
115 |
|
sl@0
|
116 |
Table names must be unique within a database, and columns and indexes must
|
sl@0
|
117 |
have unique names within the table to which they belong. For the purposes
|
sl@0
|
118 |
of uniqueness and identification, the names are folded before comparison,
|
sl@0
|
119 |
so two columns named column_one and Column_ONE are considered to have the
|
sl@0
|
120 |
same name.
|
sl@0
|
121 |
|
sl@0
|
122 |
@see TBufC
|
sl@0
|
123 |
@publishedAll
|
sl@0
|
124 |
@released
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
typedef TBufC<KDbMaxName> TDbNameC;
|
sl@0
|
127 |
|
sl@0
|
128 |
/** Represents a writable DBMS column name. It maps to a modifiable buffer descriptor
|
sl@0
|
129 |
with maximum size KDbMaxColName.
|
sl@0
|
130 |
|
sl@0
|
131 |
Notes:
|
sl@0
|
132 |
|
sl@0
|
133 |
A DBMS name must begin with an alphabetic character, after which any alphabetic,
|
sl@0
|
134 |
numeric or the _ (underscore) character may be used. DBMS names are also limited
|
sl@0
|
135 |
to 64 characters in length.
|
sl@0
|
136 |
|
sl@0
|
137 |
Table names must be unique within a database, and columns and indexes must
|
sl@0
|
138 |
have unique names within the table to which they belong. For the purposes
|
sl@0
|
139 |
of uniqueness and identification, the names are folded before comparison,
|
sl@0
|
140 |
so two columns named column_one and Column_ONE are considered to have the
|
sl@0
|
141 |
same name.
|
sl@0
|
142 |
@publishedAll
|
sl@0
|
143 |
@released
|
sl@0
|
144 |
*/
|
sl@0
|
145 |
typedef TBuf<KDbMaxColName> TDbColName;
|
sl@0
|
146 |
|
sl@0
|
147 |
/** Represents a non-writable DBMS column name. It maps to a non-modifiable buffer
|
sl@0
|
148 |
descriptor with maximum size KDbMaxColName.
|
sl@0
|
149 |
|
sl@0
|
150 |
Notes:
|
sl@0
|
151 |
|
sl@0
|
152 |
A DBMS name must begin with an alphabetic character, after which any alphabetic,
|
sl@0
|
153 |
numeric or the _ (underscore) character may be used. DBMS names are also limited
|
sl@0
|
154 |
to 64 characters in length.
|
sl@0
|
155 |
|
sl@0
|
156 |
Table names must be unique within a database, and columns and indexes must
|
sl@0
|
157 |
have unique names within the table to which they belong. For the purposes
|
sl@0
|
158 |
of uniqueness and identification, the names are folded before comparison,
|
sl@0
|
159 |
so two columns named column_one and Column_ONE are considered to have the
|
sl@0
|
160 |
same name.
|
sl@0
|
161 |
|
sl@0
|
162 |
@see TBufC
|
sl@0
|
163 |
@publishedAll
|
sl@0
|
164 |
@released
|
sl@0
|
165 |
*/
|
sl@0
|
166 |
typedef TBufC<KDbMaxColName> TDbColNameC;
|
sl@0
|
167 |
|
sl@0
|
168 |
/** Specifies when DBMS objects require a column ordinal to identify a column in
|
sl@0
|
169 |
a column set or in a rowset.
|
sl@0
|
170 |
|
sl@0
|
171 |
Note that KDbNullColNo is a special value of TDbColNo used to indicate that
|
sl@0
|
172 |
no such column exists.
|
sl@0
|
173 |
@publishedAll
|
sl@0
|
174 |
@released
|
sl@0
|
175 |
*/
|
sl@0
|
176 |
typedef TInt TDbColNo;
|
sl@0
|
177 |
|
sl@0
|
178 |
/**
|
sl@0
|
179 |
Indicates that a specified column does not exist.
|
sl@0
|
180 |
@publishedAll
|
sl@0
|
181 |
@released
|
sl@0
|
182 |
*/
|
sl@0
|
183 |
const TDbColNo KDbNullColNo=0;
|
sl@0
|
184 |
|
sl@0
|
185 |
/**
|
sl@0
|
186 |
A value returned by RDbRowSet::Count() when the number of rows cannot be determined.
|
sl@0
|
187 |
|
sl@0
|
188 |
@see RDbRowSet
|
sl@0
|
189 |
@publishedAll
|
sl@0
|
190 |
@released
|
sl@0
|
191 |
*/
|
sl@0
|
192 |
const TInt KDbUndefinedCount=-1;
|
sl@0
|
193 |
|
sl@0
|
194 |
/**
|
sl@0
|
195 |
The length of a column is undefined.
|
sl@0
|
196 |
@publishedAll
|
sl@0
|
197 |
@released
|
sl@0
|
198 |
*/
|
sl@0
|
199 |
const TInt KDbUndefinedLength=-1;
|
sl@0
|
200 |
|
sl@0
|
201 |
/**
|
sl@0
|
202 |
The default text column length. This is equal to 50.
|
sl@0
|
203 |
@publishedAll
|
sl@0
|
204 |
@released
|
sl@0
|
205 |
*/
|
sl@0
|
206 |
const TInt KDbDefaultTextColLength=50;
|
sl@0
|
207 |
|
sl@0
|
208 |
/**
|
sl@0
|
209 |
Represents every supported column type.
|
sl@0
|
210 |
@publishedAll
|
sl@0
|
211 |
@released
|
sl@0
|
212 |
*/
|
sl@0
|
213 |
enum TDbColType
|
sl@0
|
214 |
{
|
sl@0
|
215 |
/** The column stores a single bit.
|
sl@0
|
216 |
|
sl@0
|
217 |
Representation range: 0 to 1
|
sl@0
|
218 |
|
sl@0
|
219 |
Storage: 1 bit
|
sl@0
|
220 |
|
sl@0
|
221 |
Auto-increment: Yes
|
sl@0
|
222 |
|
sl@0
|
223 |
Index key: Yes */
|
sl@0
|
224 |
EDbColBit,
|
sl@0
|
225 |
|
sl@0
|
226 |
/** The column stores an 8-bit signed integer.
|
sl@0
|
227 |
|
sl@0
|
228 |
Representation range: -2^7 to 2^7 - 1
|
sl@0
|
229 |
|
sl@0
|
230 |
Storage: 1 byte
|
sl@0
|
231 |
|
sl@0
|
232 |
Auto-increment: Yes
|
sl@0
|
233 |
|
sl@0
|
234 |
Index key: Yes */
|
sl@0
|
235 |
EDbColInt8,
|
sl@0
|
236 |
|
sl@0
|
237 |
/** The column stores an 8-bit unsigned integer.
|
sl@0
|
238 |
|
sl@0
|
239 |
Representation range: 0 to 2^8-1
|
sl@0
|
240 |
|
sl@0
|
241 |
Storage: 1 byte
|
sl@0
|
242 |
|
sl@0
|
243 |
Auto-increment: Yes
|
sl@0
|
244 |
|
sl@0
|
245 |
Index key: Yes */
|
sl@0
|
246 |
EDbColUint8,
|
sl@0
|
247 |
|
sl@0
|
248 |
/** The column stores a 16-bit signed integer.
|
sl@0
|
249 |
|
sl@0
|
250 |
Representation range: -2^15 to 2^15 - 1
|
sl@0
|
251 |
|
sl@0
|
252 |
Storage: 2 bytes
|
sl@0
|
253 |
|
sl@0
|
254 |
Auto-increment: Yes
|
sl@0
|
255 |
|
sl@0
|
256 |
Index key: Yes */
|
sl@0
|
257 |
EDbColInt16,
|
sl@0
|
258 |
|
sl@0
|
259 |
/** The column stores a 16-bit unsigned integer.
|
sl@0
|
260 |
|
sl@0
|
261 |
Representation range: 0 to 2^16-1
|
sl@0
|
262 |
|
sl@0
|
263 |
Storage: 2 bytes
|
sl@0
|
264 |
|
sl@0
|
265 |
Auto-increment: Yes
|
sl@0
|
266 |
|
sl@0
|
267 |
Index key: Yes */
|
sl@0
|
268 |
EDbColUint16,
|
sl@0
|
269 |
|
sl@0
|
270 |
/** The column stores a 32-bit signed integer.
|
sl@0
|
271 |
|
sl@0
|
272 |
Representation range: -2^31 to 2^31 - 1
|
sl@0
|
273 |
|
sl@0
|
274 |
Storage: 4 bytes
|
sl@0
|
275 |
|
sl@0
|
276 |
Auto-increment: Yes
|
sl@0
|
277 |
|
sl@0
|
278 |
Index key: Yes */
|
sl@0
|
279 |
EDbColInt32,
|
sl@0
|
280 |
|
sl@0
|
281 |
/** The column stores a 32-bit unsigned integer.
|
sl@0
|
282 |
|
sl@0
|
283 |
Representation range: 0 to 2^32-1
|
sl@0
|
284 |
|
sl@0
|
285 |
Storage: 4 bytes
|
sl@0
|
286 |
|
sl@0
|
287 |
Auto-increment: Yes
|
sl@0
|
288 |
|
sl@0
|
289 |
Index key: Yes */
|
sl@0
|
290 |
EDbColUint32,
|
sl@0
|
291 |
|
sl@0
|
292 |
/** The column stores a 64-bit signed integer.
|
sl@0
|
293 |
|
sl@0
|
294 |
Representation range: -2^63 to 2^63 - 1
|
sl@0
|
295 |
|
sl@0
|
296 |
Storage: 8 bytes
|
sl@0
|
297 |
|
sl@0
|
298 |
Auto-increment: No
|
sl@0
|
299 |
|
sl@0
|
300 |
Index key: Yes */
|
sl@0
|
301 |
EDbColInt64,
|
sl@0
|
302 |
|
sl@0
|
303 |
/** The column stores a 32-bit floating point value.
|
sl@0
|
304 |
|
sl@0
|
305 |
Representation range: 1.4 X 10^-45 to 3.40282 X 10^38
|
sl@0
|
306 |
|
sl@0
|
307 |
Storage: 4 bytes
|
sl@0
|
308 |
|
sl@0
|
309 |
Auto-increment: No
|
sl@0
|
310 |
|
sl@0
|
311 |
Index key: Yes */
|
sl@0
|
312 |
EDbColReal32,
|
sl@0
|
313 |
|
sl@0
|
314 |
/** The column stores a 64-bit floating point value.
|
sl@0
|
315 |
|
sl@0
|
316 |
Representation range: 2.2 X 10^-308 to 1.79769 X 10^308
|
sl@0
|
317 |
|
sl@0
|
318 |
Storage: 8 bytes
|
sl@0
|
319 |
|
sl@0
|
320 |
Auto-increment: No
|
sl@0
|
321 |
|
sl@0
|
322 |
Index key: Yes */
|
sl@0
|
323 |
EDbColReal64,
|
sl@0
|
324 |
|
sl@0
|
325 |
/** The column stores a date/time value.
|
sl@0
|
326 |
|
sl@0
|
327 |
Representation range: 1/1/0 to 31/12/9999
|
sl@0
|
328 |
|
sl@0
|
329 |
Storage: 8 bytes
|
sl@0
|
330 |
|
sl@0
|
331 |
Auto-increment: No
|
sl@0
|
332 |
|
sl@0
|
333 |
Index key: Yes */
|
sl@0
|
334 |
EDbColDateTime,
|
sl@0
|
335 |
|
sl@0
|
336 |
/** The column stores a (short) variable length of non-Unicode text data.
|
sl@0
|
337 |
|
sl@0
|
338 |
Representation range: 0 to 256 characters
|
sl@0
|
339 |
|
sl@0
|
340 |
Storage: 0 to 256 bytes
|
sl@0
|
341 |
|
sl@0
|
342 |
Auto-increment: No
|
sl@0
|
343 |
|
sl@0
|
344 |
Index key: Yes */
|
sl@0
|
345 |
EDbColText8,
|
sl@0
|
346 |
|
sl@0
|
347 |
/** The column stores a (short) variable length of Unicode text data.
|
sl@0
|
348 |
|
sl@0
|
349 |
Representation range: 0 to 256 characters
|
sl@0
|
350 |
|
sl@0
|
351 |
Storage: 0 to 512 bytes
|
sl@0
|
352 |
|
sl@0
|
353 |
Auto-increment: No
|
sl@0
|
354 |
|
sl@0
|
355 |
Index key: Yes */
|
sl@0
|
356 |
EDbColText16,
|
sl@0
|
357 |
|
sl@0
|
358 |
/** The column stores a (short) variable length of untyped data.
|
sl@0
|
359 |
|
sl@0
|
360 |
Representation range: 0 to 255 bytes
|
sl@0
|
361 |
|
sl@0
|
362 |
Storage: 0 to 256 bytes
|
sl@0
|
363 |
|
sl@0
|
364 |
Auto-increment: No
|
sl@0
|
365 |
|
sl@0
|
366 |
Index key: No */
|
sl@0
|
367 |
EDbColBinary,
|
sl@0
|
368 |
|
sl@0
|
369 |
/** The column stores a potentially large amount of non-Unicode text data.
|
sl@0
|
370 |
|
sl@0
|
371 |
Representation range: 0 to 2^31 characters
|
sl@0
|
372 |
|
sl@0
|
373 |
Storage: 0 to 2 Gbytes
|
sl@0
|
374 |
|
sl@0
|
375 |
Auto-increment: No
|
sl@0
|
376 |
|
sl@0
|
377 |
Index key: Truncated */
|
sl@0
|
378 |
EDbColLongText8,
|
sl@0
|
379 |
|
sl@0
|
380 |
/** The column stores a potentially large amount of Unicode text data.
|
sl@0
|
381 |
|
sl@0
|
382 |
Representation range: 0 to 2^30 characters
|
sl@0
|
383 |
|
sl@0
|
384 |
Storage: 0 to 2 Gbytes
|
sl@0
|
385 |
|
sl@0
|
386 |
Auto-increment: No
|
sl@0
|
387 |
|
sl@0
|
388 |
Index key: Truncated */
|
sl@0
|
389 |
EDbColLongText16,
|
sl@0
|
390 |
|
sl@0
|
391 |
/** The column stores a potentially large amount of untyped data.
|
sl@0
|
392 |
|
sl@0
|
393 |
Representation range: 0 to 2^31 bytes
|
sl@0
|
394 |
|
sl@0
|
395 |
Storage: 0 to 2 Gbytes
|
sl@0
|
396 |
|
sl@0
|
397 |
Auto-increment: No
|
sl@0
|
398 |
|
sl@0
|
399 |
Index key: No */
|
sl@0
|
400 |
EDbColLongBinary,
|
sl@0
|
401 |
|
sl@0
|
402 |
/** This is equivalent to EDbColText8 if the build is narrow, and
|
sl@0
|
403 |
EDbColText16 if the build is Unicode. */
|
sl@0
|
404 |
EDbColText=EDbColText16,
|
sl@0
|
405 |
|
sl@0
|
406 |
/** This is equivalent to EDbColLongText8 if the build is narrow, and
|
sl@0
|
407 |
EDbColLongText16 if the build is Unicode. */
|
sl@0
|
408 |
EDbColLongText=EDbColLongText16
|
sl@0
|
409 |
};
|
sl@0
|
410 |
|
sl@0
|
411 |
/**
|
sl@0
|
412 |
Represents different ways of comparing Text and LongText columns.
|
sl@0
|
413 |
|
sl@0
|
414 |
This affects the ordering of indexes (see CDbKey), the evaluation of SQL
|
sl@0
|
415 |
queries and matching row constraints (see TDbQuery).
|
sl@0
|
416 |
@publishedAll
|
sl@0
|
417 |
@released
|
sl@0
|
418 |
*/
|
sl@0
|
419 |
enum TDbTextComparison
|
sl@0
|
420 |
{
|
sl@0
|
421 |
/** Use standard text comparison and ordering. */
|
sl@0
|
422 |
EDbCompareNormal,
|
sl@0
|
423 |
/** Use folded text for comparison and ordering. */
|
sl@0
|
424 |
EDbCompareFolded,
|
sl@0
|
425 |
/** Use collation for comparison and ordering. */
|
sl@0
|
426 |
EDbCompareCollated
|
sl@0
|
427 |
};
|
sl@0
|
428 |
|
sl@0
|
429 |
/**
|
sl@0
|
430 |
Defines a column in a table or rowset.
|
sl@0
|
431 |
|
sl@0
|
432 |
The data members are public because this is really a structure to group the
|
sl@0
|
433 |
attributes of the column together.
|
sl@0
|
434 |
|
sl@0
|
435 |
Three non-default constructors are provided for convenience.
|
sl@0
|
436 |
@publishedAll
|
sl@0
|
437 |
@released
|
sl@0
|
438 |
*/
|
sl@0
|
439 |
class TDbCol
|
sl@0
|
440 |
{
|
sl@0
|
441 |
friend class CDbColSet;
|
sl@0
|
442 |
public:
|
sl@0
|
443 |
enum {ENotNull=0x01,EAutoIncrement=0x02};
|
sl@0
|
444 |
public:
|
sl@0
|
445 |
/** Constructs an uninitialised TDbCol. It is necessary because there are
|
sl@0
|
446 |
also non-default constructors in this class. */
|
sl@0
|
447 |
inline TDbCol() {}
|
sl@0
|
448 |
inline TDbCol(const TDbCol&);
|
sl@0
|
449 |
inline TDbCol& operator=(const TDbCol&);
|
sl@0
|
450 |
IMPORT_C TDbCol(const TDesC& aName,TDbColType aType);
|
sl@0
|
451 |
IMPORT_C TDbCol(const TDesC& aName,TDbColType aType,TInt aMaxLength);
|
sl@0
|
452 |
static inline TBool IsLong(TDbColType aType);
|
sl@0
|
453 |
private:
|
sl@0
|
454 |
inline TDbCol(const TDesC& aName);
|
sl@0
|
455 |
public:
|
sl@0
|
456 |
/** The column type. */
|
sl@0
|
457 |
TDbColType iType;
|
sl@0
|
458 |
/** The maximum length of data that can be stored in a Text or Binary
|
sl@0
|
459 |
column. */
|
sl@0
|
460 |
TInt iMaxLength;
|
sl@0
|
461 |
/** A set of flags describing other column attributes. This must be one
|
sl@0
|
462 |
of the anonymous enum values ENotNull or EAutoIncrement. */
|
sl@0
|
463 |
TUint iAttributes;
|
sl@0
|
464 |
/** The column name. */
|
sl@0
|
465 |
TDbColNameC iName;
|
sl@0
|
466 |
};
|
sl@0
|
467 |
|
sl@0
|
468 |
/** Manages a set of column definitions which describe a table or rowset
|
sl@0
|
469 |
structure. Column definitions can be added and removed. The set can be
|
sl@0
|
470 |
iterated over, and ordinals for a column can be looked up.
|
sl@0
|
471 |
|
sl@0
|
472 |
The class is not intended for user derivation.
|
sl@0
|
473 |
@publishedAll
|
sl@0
|
474 |
@released
|
sl@0
|
475 |
*/
|
sl@0
|
476 |
class CDbColSet : public CBase
|
sl@0
|
477 |
{
|
sl@0
|
478 |
friend class TDbColSetIter;
|
sl@0
|
479 |
public:
|
sl@0
|
480 |
IMPORT_C CDbColSet();
|
sl@0
|
481 |
IMPORT_C static CDbColSet* NewL();
|
sl@0
|
482 |
IMPORT_C static CDbColSet* NewLC();
|
sl@0
|
483 |
IMPORT_C ~CDbColSet();
|
sl@0
|
484 |
inline const TDbCol& operator[](TDbColNo aCol) const;
|
sl@0
|
485 |
IMPORT_C const TDbCol* Col(const TDesC& aColName) const;
|
sl@0
|
486 |
IMPORT_C TDbColNo ColNo(const TDesC& aColName) const;
|
sl@0
|
487 |
inline TInt Count() const;
|
sl@0
|
488 |
inline void Clear();
|
sl@0
|
489 |
IMPORT_C CDbColSet& AddL(const TDbCol& aCol);
|
sl@0
|
490 |
IMPORT_C void Remove(const TDesC& aColName);
|
sl@0
|
491 |
private:
|
sl@0
|
492 |
CArrayPakFlat<TDbCol> iColumns;
|
sl@0
|
493 |
};
|
sl@0
|
494 |
|
sl@0
|
495 |
/**
|
sl@0
|
496 |
Provides a useful way to iterate over the contents of a column set.
|
sl@0
|
497 |
@publishedAll
|
sl@0
|
498 |
@released
|
sl@0
|
499 |
*/
|
sl@0
|
500 |
class TDbColSetIter
|
sl@0
|
501 |
{
|
sl@0
|
502 |
public:
|
sl@0
|
503 |
IMPORT_C TDbColSetIter(const CDbColSet& aColSet);
|
sl@0
|
504 |
inline operator TAny* () const;
|
sl@0
|
505 |
inline const TDbCol& operator*() const;
|
sl@0
|
506 |
inline const TDbCol* operator->() const;
|
sl@0
|
507 |
IMPORT_C TDbColSetIter& operator++();
|
sl@0
|
508 |
inline TDbColSetIter operator++(TInt);
|
sl@0
|
509 |
inline TDbColNo Col() const;
|
sl@0
|
510 |
private:
|
sl@0
|
511 |
const TDbCol* iColumn;
|
sl@0
|
512 |
TInt iIndex;
|
sl@0
|
513 |
const CArrayPakFlat<TDbCol>* iArray;
|
sl@0
|
514 |
};
|
sl@0
|
515 |
|
sl@0
|
516 |
/** Defines a key column in an index.
|
sl@0
|
517 |
|
sl@0
|
518 |
The data members are public as this is really a structure to group the
|
sl@0
|
519 |
attributes of the key column together. Two non-default constructors are
|
sl@0
|
520 |
provided for convenience.
|
sl@0
|
521 |
@publishedAll
|
sl@0
|
522 |
@released
|
sl@0
|
523 |
*/
|
sl@0
|
524 |
class TDbKeyCol
|
sl@0
|
525 |
{
|
sl@0
|
526 |
public:
|
sl@0
|
527 |
/** Specifies whether a key column in an index should be sorted in
|
sl@0
|
528 |
ascending or descending order. */
|
sl@0
|
529 |
enum TOrder
|
sl@0
|
530 |
{
|
sl@0
|
531 |
/** Use ascending order. */
|
sl@0
|
532 |
EAsc,
|
sl@0
|
533 |
/** Use descending order. */
|
sl@0
|
534 |
EDesc
|
sl@0
|
535 |
};
|
sl@0
|
536 |
public:
|
sl@0
|
537 |
/** Constructs an uninitialised object. Default constructor. It is necessary
|
sl@0
|
538 |
because there are also non-default constructors in this class. */
|
sl@0
|
539 |
inline TDbKeyCol() {}
|
sl@0
|
540 |
inline TDbKeyCol(const TDbKeyCol&);
|
sl@0
|
541 |
inline TDbKeyCol& operator=(const TDbKeyCol&);
|
sl@0
|
542 |
IMPORT_C TDbKeyCol(const TDesC& aName,TOrder anOrder=EAsc);
|
sl@0
|
543 |
IMPORT_C TDbKeyCol(const TDesC& aName,TInt aLength,TOrder anOrder=EAsc);
|
sl@0
|
544 |
public:
|
sl@0
|
545 |
/** The ordering of the key. */
|
sl@0
|
546 |
TOrder iOrder;
|
sl@0
|
547 |
/** The maximum number of characters used to index Text or LongText
|
sl@0
|
548 |
columns. If equal to KDbUndefinedLength (the default), all the characters
|
sl@0
|
549 |
in the defined column will be used. */
|
sl@0
|
550 |
TInt iLength;
|
sl@0
|
551 |
/** The column name for the key. */
|
sl@0
|
552 |
TDbColNameC iName;
|
sl@0
|
553 |
};
|
sl@0
|
554 |
|
sl@0
|
555 |
/**
|
sl@0
|
556 |
Represents the definition of an index. The key may be unique or primary, it
|
sl@0
|
557 |
can specify the sort of comparison which is made for Text columns, and it
|
sl@0
|
558 |
has a list of columns which make up the key. The class is used to construct
|
sl@0
|
559 |
and interrogate index keys.
|
sl@0
|
560 |
|
sl@0
|
561 |
This class is not intended for user derivation.
|
sl@0
|
562 |
@publishedAll
|
sl@0
|
563 |
@released
|
sl@0
|
564 |
*/
|
sl@0
|
565 |
class CDbKey : public CBase
|
sl@0
|
566 |
{
|
sl@0
|
567 |
public:
|
sl@0
|
568 |
enum {EUnique=0x01,EPrimary=0x02};
|
sl@0
|
569 |
public:
|
sl@0
|
570 |
IMPORT_C CDbKey();
|
sl@0
|
571 |
IMPORT_C static CDbKey* NewL();
|
sl@0
|
572 |
IMPORT_C static CDbKey* NewLC();
|
sl@0
|
573 |
IMPORT_C ~CDbKey();
|
sl@0
|
574 |
IMPORT_C CDbKey& AddL(const TDbKeyCol& aKeyCol);
|
sl@0
|
575 |
IMPORT_C void Remove(const TDesC& aColName);
|
sl@0
|
576 |
IMPORT_C void Clear();
|
sl@0
|
577 |
inline TInt Count() const;
|
sl@0
|
578 |
inline const TDbKeyCol& operator[](TInt aCol) const;
|
sl@0
|
579 |
inline void MakeUnique();
|
sl@0
|
580 |
inline TBool IsUnique() const;
|
sl@0
|
581 |
inline void SetComparison(TDbTextComparison aComparison);
|
sl@0
|
582 |
inline TDbTextComparison Comparison() const;
|
sl@0
|
583 |
inline void MakePrimary();
|
sl@0
|
584 |
inline TBool IsPrimary() const;
|
sl@0
|
585 |
private:
|
sl@0
|
586 |
CArrayPakFlat<TDbKeyCol> iKeys;
|
sl@0
|
587 |
TDbTextComparison iComparison;
|
sl@0
|
588 |
TInt iAttributes;
|
sl@0
|
589 |
};
|
sl@0
|
590 |
|
sl@0
|
591 |
/**
|
sl@0
|
592 |
Saves the current location of a rowset, enabling rapid navigation back to a
|
sl@0
|
593 |
previously visited row or position in the set.
|
sl@0
|
594 |
|
sl@0
|
595 |
Instances of this class are returned by RDbRowSet::Bookmark(), which can later
|
sl@0
|
596 |
be passed to RDbRowSet::GotoL() to return to the row which was current at
|
sl@0
|
597 |
the call to Bookmark().
|
sl@0
|
598 |
|
sl@0
|
599 |
@see RDbRowSet::Bookmark()
|
sl@0
|
600 |
@see RDbRowSet::GotoL()
|
sl@0
|
601 |
@publishedAll
|
sl@0
|
602 |
@released
|
sl@0
|
603 |
*/
|
sl@0
|
604 |
class TDbBookmark
|
sl@0
|
605 |
{
|
sl@0
|
606 |
friend class RDbRowSet;
|
sl@0
|
607 |
public:
|
sl@0
|
608 |
struct TMark
|
sl@0
|
609 |
/** Stores a database bookmark. */
|
sl@0
|
610 |
{
|
sl@0
|
611 |
enum {ESize=8};
|
sl@0
|
612 |
TUint32 iMark[ESize];
|
sl@0
|
613 |
};
|
sl@0
|
614 |
private:
|
sl@0
|
615 |
TMark iMark;
|
sl@0
|
616 |
};
|
sl@0
|
617 |
|
sl@0
|
618 |
/**
|
sl@0
|
619 |
A wrapper for an SQL string combined with a text comparison mode.
|
sl@0
|
620 |
|
sl@0
|
621 |
An instance of the class is used as a parameter to RDbView::Prepare(),
|
sl@0
|
622 |
RDbRowSet::FindL() and RDbRowConstraint::Open().
|
sl@0
|
623 |
|
sl@0
|
624 |
The evaluation of SQL queries or constraints depends on how Text columns are
|
sl@0
|
625 |
compared so every SQL string is accompanied by a member of the TDbTextComparison
|
sl@0
|
626 |
enumeration to indicate how comparison is done.
|
sl@0
|
627 |
|
sl@0
|
628 |
If the SQL string contains a LIKE clause with * (asterisks) wildcard then the
|
sl@0
|
629 |
characters between them must be no longer than length 255.
|
sl@0
|
630 |
If only one * exists then the length is taken from the start and to the end of
|
sl@0
|
631 |
the clause. However, if the clause contains a ? (question mark) wildcard
|
sl@0
|
632 |
within it then the characters between must be no longer than length 253.
|
sl@0
|
633 |
|
sl@0
|
634 |
@see TDbTextComparison
|
sl@0
|
635 |
@see RDbView::Prepare()
|
sl@0
|
636 |
@see RDbRowSet::FindL()
|
sl@0
|
637 |
@see RDbRowConstraint::Open()
|
sl@0
|
638 |
@publishedAll
|
sl@0
|
639 |
@released
|
sl@0
|
640 |
*/
|
sl@0
|
641 |
class TDbQuery
|
sl@0
|
642 |
{
|
sl@0
|
643 |
public:
|
sl@0
|
644 |
inline TDbQuery(const TDesC& aQuery,TDbTextComparison aComparison=EDbCompareNormal);
|
sl@0
|
645 |
inline const TDesC& Query() const;
|
sl@0
|
646 |
inline TDbTextComparison Comparison() const;
|
sl@0
|
647 |
private:
|
sl@0
|
648 |
const TDesC& iQuery;
|
sl@0
|
649 |
TDbTextComparison iComparison;
|
sl@0
|
650 |
};
|
sl@0
|
651 |
|
sl@0
|
652 |
/**
|
sl@0
|
653 |
This class is internal and is not intended for use
|
sl@0
|
654 |
@publishedAll
|
sl@0
|
655 |
@released
|
sl@0
|
656 |
*/
|
sl@0
|
657 |
class RDbHandleBase
|
sl@0
|
658 |
{
|
sl@0
|
659 |
public:
|
sl@0
|
660 |
inline RDbHandleBase();
|
sl@0
|
661 |
void Close();
|
sl@0
|
662 |
protected:
|
sl@0
|
663 |
inline void Set(CDbObject* aObject);
|
sl@0
|
664 |
CDbObject& Object() const;
|
sl@0
|
665 |
protected:
|
sl@0
|
666 |
CDbObject* iObject;
|
sl@0
|
667 |
};
|
sl@0
|
668 |
|
sl@0
|
669 |
/**
|
sl@0
|
670 |
This class is internal and is not intended for use.
|
sl@0
|
671 |
@publishedAll
|
sl@0
|
672 |
@released
|
sl@0
|
673 |
*/
|
sl@0
|
674 |
template <class T>
|
sl@0
|
675 |
class RDbHandle : public RDbHandleBase
|
sl@0
|
676 |
{
|
sl@0
|
677 |
public:
|
sl@0
|
678 |
inline T* operator=(T* aT);
|
sl@0
|
679 |
inline T* operator->() const;
|
sl@0
|
680 |
inline T& operator*() const;
|
sl@0
|
681 |
inline T* operator()() const;
|
sl@0
|
682 |
};
|
sl@0
|
683 |
|
sl@0
|
684 |
/**
|
sl@0
|
685 |
Represents a pre-compiled SQL search-condition, which can be used to
|
sl@0
|
686 |
test against the current row in a rowset.
|
sl@0
|
687 |
|
sl@0
|
688 |
The constraint is compiled against a specific rowset, and can only be matched
|
sl@0
|
689 |
against the same rowset using the RDbRowSet::MatchL() function.
|
sl@0
|
690 |
|
sl@0
|
691 |
@see RDbRowSet
|
sl@0
|
692 |
@publishedAll
|
sl@0
|
693 |
@released
|
sl@0
|
694 |
*/
|
sl@0
|
695 |
class RDbRowConstraint
|
sl@0
|
696 |
{
|
sl@0
|
697 |
friend class RDbRowSet;
|
sl@0
|
698 |
public:
|
sl@0
|
699 |
IMPORT_C TInt Open(const RDbRowSet& aView,TDbQuery aCriteria);
|
sl@0
|
700 |
IMPORT_C void Close();
|
sl@0
|
701 |
private:
|
sl@0
|
702 |
RDbHandle<CDbRowConstraint> iConstraint;
|
sl@0
|
703 |
};
|
sl@0
|
704 |
|
sl@0
|
705 |
/**
|
sl@0
|
706 |
An abstract base class that provides functionality which is shared between
|
sl@0
|
707 |
SQL view objects and Table objects. This functionality includes most of the
|
sl@0
|
708 |
cursor navigation, row retrieval and update behaviour of rowsets.
|
sl@0
|
709 |
|
sl@0
|
710 |
Rowset objects do not provide the data for the rowset on which they operate.
|
sl@0
|
711 |
It is the responsibility of the derived classes RDbView and RDbTable to specify
|
sl@0
|
712 |
the data source.
|
sl@0
|
713 |
|
sl@0
|
714 |
This class is not intended for user derivation.
|
sl@0
|
715 |
@publishedAll
|
sl@0
|
716 |
@released
|
sl@0
|
717 |
*/
|
sl@0
|
718 |
class RDbRowSet
|
sl@0
|
719 |
{
|
sl@0
|
720 |
friend class RDbRowConstraint;
|
sl@0
|
721 |
friend class RDbColReadStream;
|
sl@0
|
722 |
friend class RDbColWriteStream;
|
sl@0
|
723 |
public:
|
sl@0
|
724 |
/** Specifies where the rowset should navigate to in the GotoL() function.
|
sl@0
|
725 |
Their use is encapsulated by the respective member functions FirstL(),
|
sl@0
|
726 |
NextL() etc. */
|
sl@0
|
727 |
enum TPosition
|
sl@0
|
728 |
{
|
sl@0
|
729 |
/** Move to the first row in the rowset. */
|
sl@0
|
730 |
EFirst,
|
sl@0
|
731 |
/** Move to the next row in the rowset. */
|
sl@0
|
732 |
ENext,
|
sl@0
|
733 |
/** Move to the previous row in the rowset. */
|
sl@0
|
734 |
EPrevious,
|
sl@0
|
735 |
/** Move to the last row in the rowset. */
|
sl@0
|
736 |
ELast,
|
sl@0
|
737 |
/** Move to the position before the first row in the rowset. */
|
sl@0
|
738 |
EBeginning,
|
sl@0
|
739 |
/** Move to the position after the last row in the rowset. */
|
sl@0
|
740 |
EEnd
|
sl@0
|
741 |
};
|
sl@0
|
742 |
|
sl@0
|
743 |
/** Specifies which operations can be performed on a rowset. */
|
sl@0
|
744 |
enum TAccess
|
sl@0
|
745 |
{
|
sl@0
|
746 |
/** All operations can be performed on the rowset. */
|
sl@0
|
747 |
EUpdatable,
|
sl@0
|
748 |
/** Row navigation and reading are permitted. */
|
sl@0
|
749 |
EReadOnly,
|
sl@0
|
750 |
/** Inserting new rows is the only valid operation on the rowset. */
|
sl@0
|
751 |
EInsertOnly
|
sl@0
|
752 |
};
|
sl@0
|
753 |
|
sl@0
|
754 |
/** Specifies the direction to search through the rowset when using the
|
sl@0
|
755 |
FindL() function. */
|
sl@0
|
756 |
enum TDirection
|
sl@0
|
757 |
{
|
sl@0
|
758 |
/** Search from the current row forwards through the set. */
|
sl@0
|
759 |
EForwards,
|
sl@0
|
760 |
/** Search from the current row backwards through the set. */
|
sl@0
|
761 |
EBackwards
|
sl@0
|
762 |
};
|
sl@0
|
763 |
|
sl@0
|
764 |
/** Specifies whether the CountL() function should ensure that it returns
|
sl@0
|
765 |
the exact value which may be a non-trivial task. */
|
sl@0
|
766 |
enum TAccuracy
|
sl@0
|
767 |
{
|
sl@0
|
768 |
/** Take the time, if necessary, to return the exact value. */
|
sl@0
|
769 |
EEnsure,
|
sl@0
|
770 |
/** Return any immediately available value. */
|
sl@0
|
771 |
EQuick
|
sl@0
|
772 |
};
|
sl@0
|
773 |
public:
|
sl@0
|
774 |
IMPORT_C void Close();
|
sl@0
|
775 |
IMPORT_C void Reset();
|
sl@0
|
776 |
//
|
sl@0
|
777 |
IMPORT_C CDbColSet* ColSetL() const;
|
sl@0
|
778 |
IMPORT_C TInt ColCount() const;
|
sl@0
|
779 |
IMPORT_C TDbColType ColType(TDbColNo aCol) const;
|
sl@0
|
780 |
IMPORT_C TDbCol ColDef(TDbColNo aCol) const;
|
sl@0
|
781 |
//
|
sl@0
|
782 |
IMPORT_C TBool AtRow() const;
|
sl@0
|
783 |
IMPORT_C TBool AtBeginning() const;
|
sl@0
|
784 |
IMPORT_C TBool AtEnd() const;
|
sl@0
|
785 |
//
|
sl@0
|
786 |
IMPORT_C TInt CountL(TAccuracy anAccuracy=EEnsure) const;
|
sl@0
|
787 |
IMPORT_C TBool IsEmptyL() const;
|
sl@0
|
788 |
//
|
sl@0
|
789 |
IMPORT_C TBool GotoL(TPosition aPosition);
|
sl@0
|
790 |
inline void BeginningL();
|
sl@0
|
791 |
inline void EndL();
|
sl@0
|
792 |
inline TBool FirstL();
|
sl@0
|
793 |
inline TBool LastL();
|
sl@0
|
794 |
inline TBool NextL();
|
sl@0
|
795 |
inline TBool PreviousL();
|
sl@0
|
796 |
//
|
sl@0
|
797 |
IMPORT_C TDbBookmark Bookmark() const;
|
sl@0
|
798 |
IMPORT_C void GotoL(const TDbBookmark& aMark);
|
sl@0
|
799 |
//
|
sl@0
|
800 |
IMPORT_C TBool MatchL(const RDbRowConstraint& aConstraint);
|
sl@0
|
801 |
IMPORT_C TInt FindL(TDirection aDirection,TDbQuery aCriteria);
|
sl@0
|
802 |
//
|
sl@0
|
803 |
IMPORT_C void GetL();
|
sl@0
|
804 |
IMPORT_C void InsertL();
|
sl@0
|
805 |
IMPORT_C void InsertCopyL();
|
sl@0
|
806 |
IMPORT_C void UpdateL();
|
sl@0
|
807 |
IMPORT_C void PutL();
|
sl@0
|
808 |
IMPORT_C void Cancel();
|
sl@0
|
809 |
IMPORT_C void DeleteL();
|
sl@0
|
810 |
//
|
sl@0
|
811 |
inline TBool IsColNull(TDbColNo aCol) const;
|
sl@0
|
812 |
IMPORT_C TInt ColSize(TDbColNo aCol) const;
|
sl@0
|
813 |
IMPORT_C TInt ColLength(TDbColNo aCol) const;
|
sl@0
|
814 |
//
|
sl@0
|
815 |
IMPORT_C TInt8 ColInt8(TDbColNo aCol) const;
|
sl@0
|
816 |
IMPORT_C TInt16 ColInt16(TDbColNo aCol) const;
|
sl@0
|
817 |
IMPORT_C TInt32 ColInt32(TDbColNo aCol) const;
|
sl@0
|
818 |
IMPORT_C TInt64 ColInt64(TDbColNo aCol) const;
|
sl@0
|
819 |
inline TInt ColInt(TDbColNo aCol) const;
|
sl@0
|
820 |
IMPORT_C TUint8 ColUint8(TDbColNo aCol) const;
|
sl@0
|
821 |
IMPORT_C TUint16 ColUint16(TDbColNo aCol) const;
|
sl@0
|
822 |
IMPORT_C TUint32 ColUint32(TDbColNo aCol) const;
|
sl@0
|
823 |
inline TUint ColUint(TDbColNo aCol) const;
|
sl@0
|
824 |
IMPORT_C TReal32 ColReal32(TDbColNo aCol) const __SOFTFP;
|
sl@0
|
825 |
IMPORT_C TReal64 ColReal64(TDbColNo aCol) const __SOFTFP;
|
sl@0
|
826 |
inline TReal ColReal(TDbColNo aCol) const;
|
sl@0
|
827 |
IMPORT_C TTime ColTime(TDbColNo aCol) const;
|
sl@0
|
828 |
IMPORT_C TPtrC8 ColDes8(TDbColNo aCol) const;
|
sl@0
|
829 |
IMPORT_C TPtrC16 ColDes16(TDbColNo aCol) const;
|
sl@0
|
830 |
IMPORT_C TPtrC ColDes(TDbColNo aCol) const;
|
sl@0
|
831 |
//
|
sl@0
|
832 |
IMPORT_C void SetColNullL(TDbColNo aCol);
|
sl@0
|
833 |
inline void SetColL(TDbColNo aCol,TInt aValue);
|
sl@0
|
834 |
IMPORT_C void SetColL(TDbColNo aCol,TInt32 aValue);
|
sl@0
|
835 |
IMPORT_C void SetColL(TDbColNo aCol,TInt64 aValue);
|
sl@0
|
836 |
inline void SetColL(TDbColNo aCol,TUint aValue);
|
sl@0
|
837 |
IMPORT_C void SetColL(TDbColNo aCol,TUint32 aValue);
|
sl@0
|
838 |
IMPORT_C void SetColL(TDbColNo aCol,TReal32 aValue) __SOFTFP;
|
sl@0
|
839 |
IMPORT_C void SetColL(TDbColNo aCol,TReal64 aValue) __SOFTFP;
|
sl@0
|
840 |
IMPORT_C void SetColL(TDbColNo aCol,TTime aValue);
|
sl@0
|
841 |
IMPORT_C void SetColL(TDbColNo aCol,const TDesC8& aValue);
|
sl@0
|
842 |
IMPORT_C void SetColL(TDbColNo aCol,const TDesC16& aValue);
|
sl@0
|
843 |
private:
|
sl@0
|
844 |
inline MStreamBuf* ColSourceL(TDbColNo aCol) const;
|
sl@0
|
845 |
inline MStreamBuf* ColSinkL(TDbColNo aCol);
|
sl@0
|
846 |
CDbCursor& CheckCol(TDbColNo aCol) const;
|
sl@0
|
847 |
TDbColumnC ColumnC(TDbColNo aCol,TDbColType aType) const;
|
sl@0
|
848 |
TDbColumn Column(TDbColNo aCol,TDbColType aType);
|
sl@0
|
849 |
protected:
|
sl@0
|
850 |
RDbHandle<CDbCursor> iCursor;
|
sl@0
|
851 |
};
|
sl@0
|
852 |
|
sl@0
|
853 |
/**
|
sl@0
|
854 |
Allows any column value to be read as stream data.
|
sl@0
|
855 |
|
sl@0
|
856 |
Note that this is the only way to extract the contents of a Long column from
|
sl@0
|
857 |
a rowset.
|
sl@0
|
858 |
|
sl@0
|
859 |
Only one column in a rowset object can be opened for reading as a stream at
|
sl@0
|
860 |
a time, and while it is open no column in the same rowset object may be set
|
sl@0
|
861 |
using RDbColWriteStream.
|
sl@0
|
862 |
|
sl@0
|
863 |
Null columns result in a read stream with no data. Small numeric columns are
|
sl@0
|
864 |
maintained in memory as 32-bit values; hence reading a Uint8 column as a stream
|
sl@0
|
865 |
results in 4 bytes of stream data, not 1.
|
sl@0
|
866 |
@publishedAll
|
sl@0
|
867 |
@released
|
sl@0
|
868 |
*/
|
sl@0
|
869 |
class RDbColReadStream : public RReadStream
|
sl@0
|
870 |
{
|
sl@0
|
871 |
public:
|
sl@0
|
872 |
IMPORT_C void OpenL(const RDbRowSet& aView,TDbColNo aCol);
|
sl@0
|
873 |
IMPORT_C void OpenLC(const RDbRowSet& aView,TDbColNo aCol);
|
sl@0
|
874 |
};
|
sl@0
|
875 |
|
sl@0
|
876 |
/**
|
sl@0
|
877 |
Writes Long columns when inserting or updating rows in a rowset.
|
sl@0
|
878 |
|
sl@0
|
879 |
Only one column in a rowset object can be opened for writing as a stream at
|
sl@0
|
880 |
a time.
|
sl@0
|
881 |
@publishedAll
|
sl@0
|
882 |
@released
|
sl@0
|
883 |
*/
|
sl@0
|
884 |
class RDbColWriteStream : public RWriteStream
|
sl@0
|
885 |
{
|
sl@0
|
886 |
public:
|
sl@0
|
887 |
/** Constructs this object by invoking the default constructor for
|
sl@0
|
888 |
RWriteStream. */
|
sl@0
|
889 |
inline RDbColWriteStream() {}
|
sl@0
|
890 |
inline RDbColWriteStream(const MExternalizer<TStreamRef> &anExternalizer);
|
sl@0
|
891 |
IMPORT_C void OpenL(RDbRowSet& aView,TDbColNo aCol);
|
sl@0
|
892 |
IMPORT_C void OpenLC(RDbRowSet& aView,TDbColNo aCol);
|
sl@0
|
893 |
};
|
sl@0
|
894 |
|
sl@0
|
895 |
/**
|
sl@0
|
896 |
Describes the desired shape of a view's pre-evaluation window.
|
sl@0
|
897 |
|
sl@0
|
898 |
An instance of this class is passed to the RDbView object as part of the
|
sl@0
|
899 |
Prepare() function. The different constructors for TDbWindow can specify a view:
|
sl@0
|
900 |
|
sl@0
|
901 |
without pre-evaluation
|
sl@0
|
902 |
|
sl@0
|
903 |
with full pre-evaluation
|
sl@0
|
904 |
|
sl@0
|
905 |
with limited pre-evaluation.
|
sl@0
|
906 |
|
sl@0
|
907 |
@see RDbView
|
sl@0
|
908 |
@publishedAll
|
sl@0
|
909 |
@released
|
sl@0
|
910 |
*/
|
sl@0
|
911 |
class TDbWindow
|
sl@0
|
912 |
{
|
sl@0
|
913 |
public:
|
sl@0
|
914 |
/** Denotes a full pre-evaluation window. */
|
sl@0
|
915 |
enum TUnlimited
|
sl@0
|
916 |
{
|
sl@0
|
917 |
/** No limit on how many rows may be in the window. */
|
sl@0
|
918 |
EUnlimited=KMaxTInt
|
sl@0
|
919 |
};
|
sl@0
|
920 |
enum {ENone=0};
|
sl@0
|
921 |
public:
|
sl@0
|
922 |
inline TDbWindow();
|
sl@0
|
923 |
inline TDbWindow(TUnlimited);
|
sl@0
|
924 |
IMPORT_C TDbWindow(TInt aForeSlots,TInt aRearSlots);
|
sl@0
|
925 |
inline TInt Size() const;
|
sl@0
|
926 |
inline TInt PreferredPos() const;
|
sl@0
|
927 |
private:
|
sl@0
|
928 |
TInt iSize;
|
sl@0
|
929 |
TInt iPreferredPos;
|
sl@0
|
930 |
};
|
sl@0
|
931 |
|
sl@0
|
932 |
#if defined(__NO_CLASS_CONSTS__)
|
sl@0
|
933 |
/**
|
sl@0
|
934 |
@publishedAll
|
sl@0
|
935 |
@released
|
sl@0
|
936 |
*/
|
sl@0
|
937 |
#define KDbUnlimitedWindow TDbWindow(TDbWindow::EUnlimited)
|
sl@0
|
938 |
#else
|
sl@0
|
939 |
/**
|
sl@0
|
940 |
@publishedAll
|
sl@0
|
941 |
@released
|
sl@0
|
942 |
*/
|
sl@0
|
943 |
const TDbWindow KDbUnlimitedWindow=TDbWindow(TDbWindow::EUnlimited);
|
sl@0
|
944 |
#endif
|
sl@0
|
945 |
|
sl@0
|
946 |
/**
|
sl@0
|
947 |
Generates rowsets from an SQL query. The query is prepared and evaluated
|
sl@0
|
948 |
using the interface to this class, while the rowset is manipulated using the
|
sl@0
|
949 |
RDbRowset base class.
|
sl@0
|
950 |
|
sl@0
|
951 |
There are no special rules to consider when deriving from this class.
|
sl@0
|
952 |
@publishedAll
|
sl@0
|
953 |
@released
|
sl@0
|
954 |
*/
|
sl@0
|
955 |
class RDbView : public RDbRowSet
|
sl@0
|
956 |
{
|
sl@0
|
957 |
public:
|
sl@0
|
958 |
IMPORT_C TInt Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,TAccess anAccess=EUpdatable);
|
sl@0
|
959 |
IMPORT_C TInt Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,const TDbWindow& aWindow);
|
sl@0
|
960 |
IMPORT_C TInt Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,const TDbWindow& aWindow,TAccess anAccess);
|
sl@0
|
961 |
IMPORT_C TInt EvaluateAll();
|
sl@0
|
962 |
IMPORT_C TInt Evaluate();
|
sl@0
|
963 |
IMPORT_C void Evaluate(TRequestStatus& aStatus);
|
sl@0
|
964 |
IMPORT_C TBool Unevaluated() const;
|
sl@0
|
965 |
};
|
sl@0
|
966 |
|
sl@0
|
967 |
/**
|
sl@0
|
968 |
This class is internal and is not intended for use.
|
sl@0
|
969 |
@publishedAll
|
sl@0
|
970 |
@released
|
sl@0
|
971 |
*/
|
sl@0
|
972 |
template <class T>
|
sl@0
|
973 |
class TUnion
|
sl@0
|
974 |
{
|
sl@0
|
975 |
public:
|
sl@0
|
976 |
inline operator const T&() const;
|
sl@0
|
977 |
inline const T& operator()() const;
|
sl@0
|
978 |
inline T& operator()();
|
sl@0
|
979 |
inline void Set(const T& aT);
|
sl@0
|
980 |
private:
|
sl@0
|
981 |
TUint8 iRep[sizeof(T)];
|
sl@0
|
982 |
};
|
sl@0
|
983 |
|
sl@0
|
984 |
/**
|
sl@0
|
985 |
This class is internal and is not intended for use.
|
sl@0
|
986 |
@publishedAll
|
sl@0
|
987 |
@released
|
sl@0
|
988 |
*/
|
sl@0
|
989 |
class TDbLookupKey
|
sl@0
|
990 |
{
|
sl@0
|
991 |
public:
|
sl@0
|
992 |
struct SColumn
|
sl@0
|
993 |
{
|
sl@0
|
994 |
union
|
sl@0
|
995 |
{
|
sl@0
|
996 |
TInt32 iInt32;
|
sl@0
|
997 |
TUint32 iUint32;
|
sl@0
|
998 |
TUnion<TInt64> iInt64;
|
sl@0
|
999 |
TReal32 iReal32;
|
sl@0
|
1000 |
TReal64 iReal64;
|
sl@0
|
1001 |
TUnion<TTime> iTime;
|
sl@0
|
1002 |
struct {const TText8* iPtr;TInt iLength;} iDes8;
|
sl@0
|
1003 |
struct {const TText16* iPtr;TInt iLength;} iDes16;
|
sl@0
|
1004 |
};
|
sl@0
|
1005 |
TDbColType iType;
|
sl@0
|
1006 |
};
|
sl@0
|
1007 |
public:
|
sl@0
|
1008 |
inline TDbLookupKey();
|
sl@0
|
1009 |
inline TInt Count() const;
|
sl@0
|
1010 |
inline const SColumn* First() const;
|
sl@0
|
1011 |
void Add(TInt aKey);
|
sl@0
|
1012 |
void Add(TUint aKey);
|
sl@0
|
1013 |
void Add(TInt64 aKey);
|
sl@0
|
1014 |
void Add(TReal32 aKey) __SOFTFP;
|
sl@0
|
1015 |
void Add(TReal64 aKey) __SOFTFP;
|
sl@0
|
1016 |
void Add(TTime aKey);
|
sl@0
|
1017 |
void Add(const TDesC8& aKey);
|
sl@0
|
1018 |
void Add(const TDesC16& aKey);
|
sl@0
|
1019 |
private:
|
sl@0
|
1020 |
SColumn& NextKey();
|
sl@0
|
1021 |
private:
|
sl@0
|
1022 |
TInt iCount;
|
sl@0
|
1023 |
SColumn iKey[1]; // at least one
|
sl@0
|
1024 |
};
|
sl@0
|
1025 |
|
sl@0
|
1026 |
/**
|
sl@0
|
1027 |
Database key value.
|
sl@0
|
1028 |
|
sl@0
|
1029 |
The class encapsulates a key value which is passed to RDbTable::SeekL(), for
|
sl@0
|
1030 |
lookup in the currently active index on that rowset.
|
sl@0
|
1031 |
|
sl@0
|
1032 |
An instance of this class can store a key value of any type.
|
sl@0
|
1033 |
|
sl@0
|
1034 |
Note that the class can only hold a single-column key. Use TDbSeekMultiKey
|
sl@0
|
1035 |
for multi-column keys.
|
sl@0
|
1036 |
|
sl@0
|
1037 |
@see TDbSeekMultiKey
|
sl@0
|
1038 |
@see RDbTable
|
sl@0
|
1039 |
@publishedAll
|
sl@0
|
1040 |
@released
|
sl@0
|
1041 |
*/
|
sl@0
|
1042 |
class TDbSeekKey
|
sl@0
|
1043 |
{
|
sl@0
|
1044 |
friend class RDbTable;
|
sl@0
|
1045 |
public:
|
sl@0
|
1046 |
inline TDbSeekKey();
|
sl@0
|
1047 |
inline TDbSeekKey(TInt aKey);
|
sl@0
|
1048 |
inline TDbSeekKey(TUint aKey);
|
sl@0
|
1049 |
inline TDbSeekKey(TInt64 aKey);
|
sl@0
|
1050 |
inline TDbSeekKey(TReal32 aKey);
|
sl@0
|
1051 |
inline TDbSeekKey(TReal64 aKey);
|
sl@0
|
1052 |
inline TDbSeekKey(TTime aKey);
|
sl@0
|
1053 |
inline TDbSeekKey(const TDesC8& aKey);
|
sl@0
|
1054 |
inline TDbSeekKey(const TDesC16& aKey);
|
sl@0
|
1055 |
IMPORT_C TDbSeekKey& Add(TInt aKey);
|
sl@0
|
1056 |
IMPORT_C TDbSeekKey& Add(TUint aKey);
|
sl@0
|
1057 |
IMPORT_C TDbSeekKey& Add(TInt64 aKey);
|
sl@0
|
1058 |
IMPORT_C TDbSeekKey& Add(TReal32 aKey) __SOFTFP;
|
sl@0
|
1059 |
IMPORT_C TDbSeekKey& Add(TReal64 aKey) __SOFTFP;
|
sl@0
|
1060 |
IMPORT_C TDbSeekKey& Add(TTime aKey);
|
sl@0
|
1061 |
IMPORT_C TDbSeekKey& Add(const TDesC8& aKey);
|
sl@0
|
1062 |
IMPORT_C TDbSeekKey& Add(const TDesC16& aKey);
|
sl@0
|
1063 |
private:
|
sl@0
|
1064 |
TDbLookupKey& Check();
|
sl@0
|
1065 |
protected:
|
sl@0
|
1066 |
inline TDbSeekKey(TInt aKeys,TInt);
|
sl@0
|
1067 |
private:
|
sl@0
|
1068 |
TInt iMaxKeys;
|
sl@0
|
1069 |
TDbLookupKey iKey;
|
sl@0
|
1070 |
};
|
sl@0
|
1071 |
|
sl@0
|
1072 |
/**
|
sl@0
|
1073 |
Database multi-column key value.
|
sl@0
|
1074 |
|
sl@0
|
1075 |
The class extends the behaviour of TDbSeekKey by allowing multi-column indexes
|
sl@0
|
1076 |
to be searched using multi-column key values.
|
sl@0
|
1077 |
|
sl@0
|
1078 |
The template parameter S specifies the maximum number of column values that
|
sl@0
|
1079 |
can be added to the key value.
|
sl@0
|
1080 |
|
sl@0
|
1081 |
Use the TDbSeekKey::Add() members to append the values for each column in
|
sl@0
|
1082 |
the key value.
|
sl@0
|
1083 |
@publishedAll
|
sl@0
|
1084 |
@released
|
sl@0
|
1085 |
*/
|
sl@0
|
1086 |
template<TInt S>
|
sl@0
|
1087 |
class TDbSeekMultiKey : public TDbSeekKey
|
sl@0
|
1088 |
{
|
sl@0
|
1089 |
public:
|
sl@0
|
1090 |
inline TDbSeekMultiKey();
|
sl@0
|
1091 |
private:
|
sl@0
|
1092 |
TDbLookupKey::SColumn iExtraKeys[S-1];
|
sl@0
|
1093 |
};
|
sl@0
|
1094 |
|
sl@0
|
1095 |
/**
|
sl@0
|
1096 |
Provides access to table data as a rowset, allowing manipulation of a named
|
sl@0
|
1097 |
table in the database. Additionally, a named index can be used to order the
|
sl@0
|
1098 |
rowset, and to provide fast key-based row retrieval from the table.
|
sl@0
|
1099 |
|
sl@0
|
1100 |
There are no special rules to consider when deriving from this class.
|
sl@0
|
1101 |
@publishedAll
|
sl@0
|
1102 |
@released
|
sl@0
|
1103 |
*/
|
sl@0
|
1104 |
class RDbTable : public RDbRowSet
|
sl@0
|
1105 |
{
|
sl@0
|
1106 |
public:
|
sl@0
|
1107 |
/** Database table seek comparison types. */
|
sl@0
|
1108 |
enum TComparison
|
sl@0
|
1109 |
{
|
sl@0
|
1110 |
/** Retrieve the last row which is strictly less than the key value. */
|
sl@0
|
1111 |
ELessThan,
|
sl@0
|
1112 |
/** Retrieve the last row which is equal to or less than the key
|
sl@0
|
1113 |
value. */
|
sl@0
|
1114 |
ELessEqual,
|
sl@0
|
1115 |
/** Retrieve the first row which is equal to the key value. */
|
sl@0
|
1116 |
EEqualTo,
|
sl@0
|
1117 |
/** Retrieve the first row which is equal to or greater than the key
|
sl@0
|
1118 |
value. */
|
sl@0
|
1119 |
EGreaterEqual,
|
sl@0
|
1120 |
/** Retrieve the first row which is strictly greater than the key
|
sl@0
|
1121 |
value. */
|
sl@0
|
1122 |
EGreaterThan
|
sl@0
|
1123 |
};
|
sl@0
|
1124 |
public:
|
sl@0
|
1125 |
IMPORT_C TInt Open(RDbDatabase& aDatabase,const TDesC& aName,TAccess anAccess=EUpdatable);
|
sl@0
|
1126 |
inline TInt SetIndex(const TDesC& anIndex);
|
sl@0
|
1127 |
inline TInt SetNoIndex();
|
sl@0
|
1128 |
IMPORT_C TBool SeekL(const TDbSeekKey& aKey,TComparison aComparison=EEqualTo);
|
sl@0
|
1129 |
private:
|
sl@0
|
1130 |
IMPORT_C TInt SetIndex(const TDesC* anIndex);
|
sl@0
|
1131 |
};
|
sl@0
|
1132 |
|
sl@0
|
1133 |
/**
|
sl@0
|
1134 |
@publishedAll
|
sl@0
|
1135 |
@released
|
sl@0
|
1136 |
*/
|
sl@0
|
1137 |
class CDbNames : public CBase
|
sl@0
|
1138 |
{
|
sl@0
|
1139 |
private:
|
sl@0
|
1140 |
inline CDbNames();
|
sl@0
|
1141 |
public:
|
sl@0
|
1142 |
static CDbNames* NewLC();
|
sl@0
|
1143 |
~CDbNames();
|
sl@0
|
1144 |
inline TInt Count() const;
|
sl@0
|
1145 |
inline const TDesC& operator[](TInt anIndex) const;
|
sl@0
|
1146 |
IMPORT_C void AddL(const TDesC& aName);
|
sl@0
|
1147 |
private:
|
sl@0
|
1148 |
CArrayPakFlat<TDbNameC> iList;
|
sl@0
|
1149 |
};
|
sl@0
|
1150 |
/**
|
sl@0
|
1151 |
@publishedAll
|
sl@0
|
1152 |
@released
|
sl@0
|
1153 |
*/
|
sl@0
|
1154 |
typedef CDbNames CDbTableNames,CDbIndexNames,CDbDatabaseNames;
|
sl@0
|
1155 |
|
sl@0
|
1156 |
/**
|
sl@0
|
1157 |
The maximum length for a generic DBMS string, which might be transferred from DBMS server
|
sl@0
|
1158 |
to the DBMS client using IPC.
|
sl@0
|
1159 |
@publishedAll
|
sl@0
|
1160 |
@released
|
sl@0
|
1161 |
*/
|
sl@0
|
1162 |
const TInt KDbMaxStrLen = 256;
|
sl@0
|
1163 |
|
sl@0
|
1164 |
/**
|
sl@0
|
1165 |
Represents a generic read-only DBMS string. It maps to a non-modifiable buffer descriptor
|
sl@0
|
1166 |
with maximum size KDbMaxStrLen.
|
sl@0
|
1167 |
|
sl@0
|
1168 |
@see TBufC
|
sl@0
|
1169 |
@publishedAll
|
sl@0
|
1170 |
@released
|
sl@0
|
1171 |
*/
|
sl@0
|
1172 |
typedef TBufC<KDbMaxStrLen> TDbStringC;
|
sl@0
|
1173 |
|
sl@0
|
1174 |
/**
|
sl@0
|
1175 |
CDbStrings encapsulates functionality used for transferring an array of strings from
|
sl@0
|
1176 |
DBMS server to the DBMS client. The maximal length of each element of the array is
|
sl@0
|
1177 |
KDbMaxStrLen characters.
|
sl@0
|
1178 |
The typical usage pattern of CDbStrings class is:
|
sl@0
|
1179 |
@code
|
sl@0
|
1180 |
CDbStrings* strings = <a call of an exported DBMS method>;
|
sl@0
|
1181 |
TInt cnt = strings.Count();
|
sl@0
|
1182 |
for(TInt i=0;i<cnt;++i)
|
sl@0
|
1183 |
{
|
sl@0
|
1184 |
const TDesC& str = (*strings)[i];
|
sl@0
|
1185 |
<do something with "str" variable>;
|
sl@0
|
1186 |
}
|
sl@0
|
1187 |
delete strings;
|
sl@0
|
1188 |
@endcode
|
sl@0
|
1189 |
@publishedAll
|
sl@0
|
1190 |
@released
|
sl@0
|
1191 |
*/
|
sl@0
|
1192 |
class CDbStrings : public CBase
|
sl@0
|
1193 |
{
|
sl@0
|
1194 |
private:
|
sl@0
|
1195 |
inline CDbStrings();
|
sl@0
|
1196 |
public:
|
sl@0
|
1197 |
static CDbStrings* NewLC();
|
sl@0
|
1198 |
virtual ~CDbStrings();
|
sl@0
|
1199 |
inline TInt Count() const;
|
sl@0
|
1200 |
inline const TDesC& operator[](TInt aIndex) const;
|
sl@0
|
1201 |
void AddL(const TDesC& aStr);
|
sl@0
|
1202 |
private:
|
sl@0
|
1203 |
CArrayPakFlat<TDbStringC> iList;
|
sl@0
|
1204 |
};
|
sl@0
|
1205 |
|
sl@0
|
1206 |
/**
|
sl@0
|
1207 |
Abstract class providing the functionality of a database.
|
sl@0
|
1208 |
|
sl@0
|
1209 |
The source of the database and the implementation characteristics of a particular
|
sl@0
|
1210 |
database are provided by a class derived from RDbDatabase.
|
sl@0
|
1211 |
|
sl@0
|
1212 |
DBMS has one such implementation: the store database.
|
sl@0
|
1213 |
|
sl@0
|
1214 |
This class is not intended for user derivation.
|
sl@0
|
1215 |
|
sl@0
|
1216 |
Note: For functions (i.e. Execute) that take an Sql string, if the string
|
sl@0
|
1217 |
contains a LIKE clause with * (asterisks) wildcard then the
|
sl@0
|
1218 |
characters between them must be no longer than length 255.
|
sl@0
|
1219 |
If only one * exists then the length is taken from the start and to the end of
|
sl@0
|
1220 |
the clause. However, if the clause contains a ? (question mark) wildcard
|
sl@0
|
1221 |
within it then the characters between must be no longer than length 253.
|
sl@0
|
1222 |
|
sl@0
|
1223 |
@publishedAll
|
sl@0
|
1224 |
@released
|
sl@0
|
1225 |
*/
|
sl@0
|
1226 |
class RDbDatabase
|
sl@0
|
1227 |
{
|
sl@0
|
1228 |
friend class RDbView;
|
sl@0
|
1229 |
friend class RDbTable;
|
sl@0
|
1230 |
friend class RDbIncremental;
|
sl@0
|
1231 |
friend class RDbUpdate;
|
sl@0
|
1232 |
friend class RDbNotifier;
|
sl@0
|
1233 |
public:
|
sl@0
|
1234 |
struct TSize {TInt iSize;TInt iUsage;};
|
sl@0
|
1235 |
public:
|
sl@0
|
1236 |
IMPORT_C void Close();
|
sl@0
|
1237 |
IMPORT_C TInt Destroy();
|
sl@0
|
1238 |
//
|
sl@0
|
1239 |
IMPORT_C TBool IsDamaged() const;
|
sl@0
|
1240 |
IMPORT_C TInt Recover();
|
sl@0
|
1241 |
//
|
sl@0
|
1242 |
IMPORT_C TInt UpdateStats();
|
sl@0
|
1243 |
IMPORT_C TSize Size() const;
|
sl@0
|
1244 |
IMPORT_C TInt Compact();
|
sl@0
|
1245 |
IMPORT_C TInt Begin();
|
sl@0
|
1246 |
IMPORT_C TInt Commit();
|
sl@0
|
1247 |
IMPORT_C void Rollback();
|
sl@0
|
1248 |
IMPORT_C TBool InTransaction() const;
|
sl@0
|
1249 |
//
|
sl@0
|
1250 |
inline TInt CreateTable(const TDesC& aName,const CDbColSet& aDef);
|
sl@0
|
1251 |
inline TInt CreateTable(const TDesC& aName,const CDbColSet& aDef,const CDbKey& aPrimaryKey);
|
sl@0
|
1252 |
IMPORT_C TInt DropTable(const TDesC& aName);
|
sl@0
|
1253 |
IMPORT_C TInt AlterTable(const TDesC& aName,const CDbColSet& aNewDef);
|
sl@0
|
1254 |
IMPORT_C TInt CreateIndex(const TDesC& aName,const TDesC& aTable,const CDbKey& aKey);
|
sl@0
|
1255 |
IMPORT_C TInt DropIndex(const TDesC& aName,const TDesC& aTable);
|
sl@0
|
1256 |
//
|
sl@0
|
1257 |
IMPORT_C TInt Execute(const TDesC& aSql,TDbTextComparison aComparison=EDbCompareNormal);
|
sl@0
|
1258 |
//
|
sl@0
|
1259 |
IMPORT_C CDbTableNames* TableNamesL() const;
|
sl@0
|
1260 |
IMPORT_C CDbColSet* ColSetL(const TDesC& aName) const;
|
sl@0
|
1261 |
IMPORT_C CDbIndexNames* IndexNamesL(const TDesC& aTable) const;
|
sl@0
|
1262 |
IMPORT_C CDbKey* KeyL(const TDesC& aName,const TDesC& aTable) const;
|
sl@0
|
1263 |
private:
|
sl@0
|
1264 |
IMPORT_C TInt CreateTable(const TDesC& aName,const CDbColSet& aColSet,const CDbKey* aPrimaryKey);
|
sl@0
|
1265 |
protected:
|
sl@0
|
1266 |
RDbHandle<CDbDatabase> iDatabase;
|
sl@0
|
1267 |
};
|
sl@0
|
1268 |
|
sl@0
|
1269 |
/**
|
sl@0
|
1270 |
Provides the interface for performing long-running database operations in
|
sl@0
|
1271 |
incremental steps, allowing application programs to remain responsive to other
|
sl@0
|
1272 |
events.
|
sl@0
|
1273 |
|
sl@0
|
1274 |
After an operation has begun, a standard interface is used to continue and
|
sl@0
|
1275 |
complete all incremental operations. On successful return from one of the
|
sl@0
|
1276 |
initiating functions, a step value is also returned. This gives the progress
|
sl@0
|
1277 |
indication and is, initially, positive. This value should be passed into
|
sl@0
|
1278 |
subsequent steps in the operation, each of which may decrement the value by
|
sl@0
|
1279 |
some amount, although they are allowed to leave it unchanged. The value
|
sl@0
|
1280 |
reaches zero, if, and only if the operation completes.
|
sl@0
|
1281 |
|
sl@0
|
1282 |
While an incremental operation is in progress, the database cannot be used
|
sl@0
|
1283 |
for any other operations such as opening tables or preparing views.
|
sl@0
|
1284 |
|
sl@0
|
1285 |
Starting an incremental operation also requires that no rowsets are open on
|
sl@0
|
1286 |
the database and that no commit is pending for data manipulation transactions.
|
sl@0
|
1287 |
|
sl@0
|
1288 |
If no explicit transaction has been started by the database, then an automatic
|
sl@0
|
1289 |
transaction is begun when any incremental operation is started and is committed
|
sl@0
|
1290 |
when complete or rolled back if the operation either fails or is abandoned
|
sl@0
|
1291 |
prior to completion.
|
sl@0
|
1292 |
@publishedAll
|
sl@0
|
1293 |
@released
|
sl@0
|
1294 |
*/
|
sl@0
|
1295 |
class RDbIncremental
|
sl@0
|
1296 |
{
|
sl@0
|
1297 |
public:
|
sl@0
|
1298 |
IMPORT_C void Close();
|
sl@0
|
1299 |
IMPORT_C TInt Next(TInt& aStep);
|
sl@0
|
1300 |
IMPORT_C void Next(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus);
|
sl@0
|
1301 |
//
|
sl@0
|
1302 |
IMPORT_C TInt Recover(RDbDatabase& aDatabase,TInt& aStep);
|
sl@0
|
1303 |
IMPORT_C TInt Compact(RDbDatabase& aDatabase,TInt& aStep);
|
sl@0
|
1304 |
IMPORT_C TInt DropTable(RDbDatabase& aDatabase,const TDesC& aTable,TInt& aStep);
|
sl@0
|
1305 |
IMPORT_C TInt AlterTable(RDbDatabase& aDatabase,const TDesC& aTable,const CDbColSet& aNewDef,TInt& aStep);
|
sl@0
|
1306 |
IMPORT_C TInt CreateIndex(RDbDatabase& aDatabase,const TDesC& aName,const TDesC& aTable,const CDbKey& aKey,TInt& aStep);
|
sl@0
|
1307 |
IMPORT_C TInt DropIndex(RDbDatabase& aDatabase,const TDesC& aName,const TDesC& aTable,TInt& aStep);
|
sl@0
|
1308 |
inline TInt Execute(RDbDatabase& aDatabase,const TDesC& aSql,TInt& aStep);
|
sl@0
|
1309 |
IMPORT_C TInt Execute(RDbDatabase& aDatabase,const TDesC& aSql,TDbTextComparison aComparison,TInt& aStep);
|
sl@0
|
1310 |
IMPORT_C TInt UpdateStats(RDbDatabase& aDatabase,TInt& aStep);
|
sl@0
|
1311 |
private:
|
sl@0
|
1312 |
RDbHandle<CDbIncremental> iState;
|
sl@0
|
1313 |
};
|
sl@0
|
1314 |
|
sl@0
|
1315 |
/**
|
sl@0
|
1316 |
Provides an interface to allow incremental execution of a DML (SQL data
|
sl@0
|
1317 |
update) statement.
|
sl@0
|
1318 |
|
sl@0
|
1319 |
This class offers similar behaviour to the RDbIncremental class, in that it
|
sl@0
|
1320 |
allows an application to perform long running operations while remaining
|
sl@0
|
1321 |
responsive to events. However, unlike that class, RDbUpdate is restricted to
|
sl@0
|
1322 |
executing DML statements.
|
sl@0
|
1323 |
|
sl@0
|
1324 |
@see RDbIncremental
|
sl@0
|
1325 |
@publishedAll
|
sl@0
|
1326 |
@released
|
sl@0
|
1327 |
*/
|
sl@0
|
1328 |
class RDbUpdate
|
sl@0
|
1329 |
{
|
sl@0
|
1330 |
public:
|
sl@0
|
1331 |
IMPORT_C TInt Execute(RDbDatabase& aDatabase,const TDesC& aSql,TDbTextComparison aComparison=EDbCompareNormal);
|
sl@0
|
1332 |
IMPORT_C void Close();
|
sl@0
|
1333 |
//
|
sl@0
|
1334 |
IMPORT_C TInt Next();
|
sl@0
|
1335 |
IMPORT_C void Next(TRequestStatus& aStatus);
|
sl@0
|
1336 |
IMPORT_C TInt RowCount() const;
|
sl@0
|
1337 |
private:
|
sl@0
|
1338 |
RDbHandle<CDbIncremental> iUpdate;
|
sl@0
|
1339 |
TPckgBuf<TInt> iRows;
|
sl@0
|
1340 |
};
|
sl@0
|
1341 |
|
sl@0
|
1342 |
/**
|
sl@0
|
1343 |
Provides notification of database changes to clients.
|
sl@0
|
1344 |
|
sl@0
|
1345 |
This is useful for shared databases.
|
sl@0
|
1346 |
@publishedAll
|
sl@0
|
1347 |
@released
|
sl@0
|
1348 |
*/
|
sl@0
|
1349 |
class RDbNotifier
|
sl@0
|
1350 |
{
|
sl@0
|
1351 |
public:
|
sl@0
|
1352 |
/** Defines the events which may be reported by a DBMS change notifier
|
sl@0
|
1353 |
through this RDbNotifier object.
|
sl@0
|
1354 |
|
sl@0
|
1355 |
Each enumerator corresponds to a distinct event type.
|
sl@0
|
1356 |
|
sl@0
|
1357 |
The changes are reported through a TRequestStatus object when an
|
sl@0
|
1358 |
outstanding notification request completes.
|
sl@0
|
1359 |
|
sl@0
|
1360 |
Notes
|
sl@0
|
1361 |
|
sl@0
|
1362 |
If further database events occur while a client is handling the completion
|
sl@0
|
1363 |
of a previous event, the notifier remembers the most significant event. The
|
sl@0
|
1364 |
order of importance is:
|
sl@0
|
1365 |
|
sl@0
|
1366 |
ERecover > ERollback > ECommit
|
sl@0
|
1367 |
|
sl@0
|
1368 |
where the symbol > means "is more important than" */
|
sl@0
|
1369 |
enum TEvent
|
sl@0
|
1370 |
{
|
sl@0
|
1371 |
/** The database has been closed. */
|
sl@0
|
1372 |
EClose,
|
sl@0
|
1373 |
/** All read locks have been removed. */
|
sl@0
|
1374 |
EUnlock,
|
sl@0
|
1375 |
/** A transaction has been committed. */
|
sl@0
|
1376 |
ECommit,
|
sl@0
|
1377 |
/** A transaction has been rolled back */
|
sl@0
|
1378 |
ERollback,
|
sl@0
|
1379 |
/** The database has been recovered */
|
sl@0
|
1380 |
ERecover
|
sl@0
|
1381 |
};
|
sl@0
|
1382 |
public:
|
sl@0
|
1383 |
IMPORT_C TInt Open(RDbDatabase& aDatabase);
|
sl@0
|
1384 |
IMPORT_C void Close();
|
sl@0
|
1385 |
//
|
sl@0
|
1386 |
IMPORT_C void NotifyUnlock(TRequestStatus& aStatus);
|
sl@0
|
1387 |
IMPORT_C void NotifyChange(TRequestStatus& aStatus);
|
sl@0
|
1388 |
IMPORT_C void Cancel();
|
sl@0
|
1389 |
private:
|
sl@0
|
1390 |
RDbHandle<CDbNotifier> iNotifier;
|
sl@0
|
1391 |
};
|
sl@0
|
1392 |
|
sl@0
|
1393 |
/**
|
sl@0
|
1394 |
Client-server databases
|
sl@0
|
1395 |
|
sl@0
|
1396 |
Represents a session with the DBMS server. A thread uses this class to set
|
sl@0
|
1397 |
up a DBMS server session and this provides the basis for sharing databases
|
sl@0
|
1398 |
with other threads.
|
sl@0
|
1399 |
@publishedAll
|
sl@0
|
1400 |
@released
|
sl@0
|
1401 |
*/
|
sl@0
|
1402 |
class RDbs : public RSessionBase
|
sl@0
|
1403 |
{
|
sl@0
|
1404 |
public:
|
sl@0
|
1405 |
/**
|
sl@0
|
1406 |
This enum is used in GetDatabasePolicy/GetTablePolicy/GetTablePolicies calls and specifies
|
sl@0
|
1407 |
requested security policy type: read/write/schema.
|
sl@0
|
1408 |
@publishedAll
|
sl@0
|
1409 |
@released
|
sl@0
|
1410 |
*/
|
sl@0
|
1411 |
typedef enum {EReadPolicy, EWritePolicy, ESchemaPolicy} TPolicyType;
|
sl@0
|
1412 |
|
sl@0
|
1413 |
public:
|
sl@0
|
1414 |
IMPORT_C static TVersion Version();
|
sl@0
|
1415 |
IMPORT_C TInt Connect();
|
sl@0
|
1416 |
IMPORT_C CDbDatabaseNames* DatabaseNamesL(TDriveNumber aDrive, TUid aPolicyUid);
|
sl@0
|
1417 |
IMPORT_C TInt CopyDatabase(const TDesC& aSrcDbName, const TDesC& aDestDbName, TUid aPolicyUid);
|
sl@0
|
1418 |
IMPORT_C TInt DeleteDatabase(const TDesC& aDbName, TUid aPolicyUid);
|
sl@0
|
1419 |
IMPORT_C TInt GetDatabasePolicy(TUid aPolicyUid, TPolicyType aPolicyType,
|
sl@0
|
1420 |
TSecurityPolicy& aDbPolicy);
|
sl@0
|
1421 |
IMPORT_C TInt GetTablePolicy(TUid aPolicyUid, const TDesC& aTableName,
|
sl@0
|
1422 |
TPolicyType aPolicyType, TSecurityPolicy& aTablePolicy);
|
sl@0
|
1423 |
IMPORT_C TInt GetTablePolicies(TUid aPolicyUid, const TDesC& aTableName,
|
sl@0
|
1424 |
TPolicyType aPolicyType,
|
sl@0
|
1425 |
TSecurityPolicy& aDbPolicy, TSecurityPolicy& aTablePolicy);
|
sl@0
|
1426 |
//
|
sl@0
|
1427 |
IMPORT_C void ResourceMark();
|
sl@0
|
1428 |
IMPORT_C void ResourceCheck();
|
sl@0
|
1429 |
IMPORT_C TInt ResourceCount();
|
sl@0
|
1430 |
IMPORT_C void SetHeapFailure(TInt aTAllocFail,TInt aRate);
|
sl@0
|
1431 |
|
sl@0
|
1432 |
IMPORT_C TInt ReserveDriveSpace(TInt aDriveNo, TInt aSpace);
|
sl@0
|
1433 |
IMPORT_C void FreeReservedSpace(TInt aDriveNo);
|
sl@0
|
1434 |
IMPORT_C TInt GetReserveAccess(TInt aDriveNo);
|
sl@0
|
1435 |
IMPORT_C TInt ReleaseReserveAccess(TInt aDriveNo);
|
sl@0
|
1436 |
|
sl@0
|
1437 |
IMPORT_C TInt GetBackupPath(TSecureId aRequesterSid, const TDesC& aDbName,
|
sl@0
|
1438 |
TUid aDbPolicyUid, TDes& aBackupPath);
|
sl@0
|
1439 |
IMPORT_C CDbStrings* BackupPathsL(TSecureId aRequesterSid, TUid aDbPolicyUid);
|
sl@0
|
1440 |
|
sl@0
|
1441 |
private:
|
sl@0
|
1442 |
TInt DoConnect();
|
sl@0
|
1443 |
TInt SessionMessage(TInt aFunction);
|
sl@0
|
1444 |
TInt GetPolicy(TUid aPolicyUid, const TDesC& aTableName,
|
sl@0
|
1445 |
TUint aMask, TSecurityPolicy& aPolicy);
|
sl@0
|
1446 |
};
|
sl@0
|
1447 |
|
sl@0
|
1448 |
/**
|
sl@0
|
1449 |
Generic database implementation
|
sl@0
|
1450 |
@publishedAll
|
sl@0
|
1451 |
@released
|
sl@0
|
1452 |
*/
|
sl@0
|
1453 |
class RDbNamedDatabase : public RDbDatabase
|
sl@0
|
1454 |
{
|
sl@0
|
1455 |
public:
|
sl@0
|
1456 |
/** Specifies which operations can be performed on a rowset. */
|
sl@0
|
1457 |
enum TAccess
|
sl@0
|
1458 |
{
|
sl@0
|
1459 |
EReadWrite,
|
sl@0
|
1460 |
/** Row navigation and reading are permitted. */
|
sl@0
|
1461 |
EReadOnly
|
sl@0
|
1462 |
};
|
sl@0
|
1463 |
public:
|
sl@0
|
1464 |
IMPORT_C TInt Create(RDbs& aDbs, const TDesC& aDatabase, const TDesC& aFormat);
|
sl@0
|
1465 |
IMPORT_C TInt Create(RFs& aFs,const TDesC& aDatabase,const TDesC& aFormat=TPtrC());
|
sl@0
|
1466 |
IMPORT_C TInt Replace(RFs& aFs,const TDesC& aDatabase,const TDesC& aFormat=TPtrC());
|
sl@0
|
1467 |
IMPORT_C TInt Open(RFs& aFs,const TDesC& aDatabase,const TDesC& aFormat=TPtrC(),TAccess aMode=EReadWrite);
|
sl@0
|
1468 |
IMPORT_C TInt Open(RDbs& aDbs,const TDesC& aDatabase,const TDesC& aFormat=TPtrC());
|
sl@0
|
1469 |
};
|
sl@0
|
1470 |
|
sl@0
|
1471 |
/**
|
sl@0
|
1472 |
DBMS Store database implementation
|
sl@0
|
1473 |
@publishedAll
|
sl@0
|
1474 |
@released
|
sl@0
|
1475 |
*/
|
sl@0
|
1476 |
class RDbStoreDatabase : public RDbDatabase
|
sl@0
|
1477 |
{
|
sl@0
|
1478 |
public:
|
sl@0
|
1479 |
IMPORT_C TStreamId CreateL(CStreamStore* aStore);
|
sl@0
|
1480 |
IMPORT_C void OpenL(CStreamStore* aStore,TStreamId anId);
|
sl@0
|
1481 |
IMPORT_C static void CompressL(CStreamStore& aStore,TStreamId aId);
|
sl@0
|
1482 |
IMPORT_C static void DecompressL(CStreamStore& aStore,TStreamId aId);
|
sl@0
|
1483 |
};
|
sl@0
|
1484 |
|
sl@0
|
1485 |
#include <d32dbms.inl>
|
sl@0
|
1486 |
#endif
|