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 |
#include "UD_STD.H"
|
sl@0
|
17 |
|
sl@0
|
18 |
// Class RDbDatabase
|
sl@0
|
19 |
|
sl@0
|
20 |
/**
|
sl@0
|
21 |
Closes a database. Commits any pending transaction. Frees the allocated resources.
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
EXPORT_C void RDbDatabase::Close()
|
sl@0
|
24 |
{
|
sl@0
|
25 |
CDbDatabase* db=iDatabase();
|
sl@0
|
26 |
if (db && InTransaction())
|
sl@0
|
27 |
Commit(); // attempt to commit
|
sl@0
|
28 |
iDatabase.Close();
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
//
|
sl@0
|
32 |
// Runs the incremental DDL object to completion.
|
sl@0
|
33 |
//
|
sl@0
|
34 |
LOCAL_C void CompleteDDLL(CDbIncremental* aIncremental,TInt& aStep)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
__ASSERT((aIncremental==0)==(aStep==0));
|
sl@0
|
37 |
if (!aIncremental)
|
sl@0
|
38 |
return;
|
sl@0
|
39 |
aIncremental->PushL();
|
sl@0
|
40 |
do aIncremental->NextL(aStep);
|
sl@0
|
41 |
while (aStep!=0);
|
sl@0
|
42 |
CleanupStack::PopAndDestroy(); // aIncrmental
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
//
|
sl@0
|
46 |
// Runs the DML incremental object to completion.
|
sl@0
|
47 |
//
|
sl@0
|
48 |
LOCAL_C void CompleteDMLL(CDbIncremental* aIncremental,TInt& aRows)
|
sl@0
|
49 |
{
|
sl@0
|
50 |
__ASSERT((aIncremental==0)!=(aRows==0));
|
sl@0
|
51 |
if (!aIncremental)
|
sl@0
|
52 |
return;
|
sl@0
|
53 |
aIncremental->PushL();
|
sl@0
|
54 |
while (aIncremental->NextL(aRows))
|
sl@0
|
55 |
;
|
sl@0
|
56 |
CleanupStack::PopAndDestroy(); // aIncremental
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
LOCAL_C TInt Property(const RDbHandle<CDbDatabase>& aDb,CDbDatabase::TProperty aProperty)
|
sl@0
|
60 |
{
|
sl@0
|
61 |
return aDb->Property(aProperty);
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
LOCAL_C TInt Utility(RDbHandle<CDbDatabase>& aDb,CDbDatabase::TUtility aType)
|
sl@0
|
65 |
{
|
sl@0
|
66 |
TInt step;
|
sl@0
|
67 |
TRAPD(r,CompleteDDLL(aDb->UtilityL(aType,step),step));
|
sl@0
|
68 |
return r;
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
/**
|
sl@0
|
72 |
Reports the damage status of the database.
|
sl@0
|
73 |
The function checks database indexes and returs true if some of them are broken.
|
sl@0
|
74 |
|
sl@0
|
75 |
@return True if the database is damaged, false otherwise.
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
EXPORT_C TBool RDbDatabase::IsDamaged() const
|
sl@0
|
78 |
{
|
sl@0
|
79 |
return Property(iDatabase,CDbDatabase::EIsDamaged);
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
/**
|
sl@0
|
83 |
Synchronous database recovery.
|
sl@0
|
84 |
Recover() will try to rebuild database indexes if they are broken.
|
sl@0
|
85 |
If the database data is corrupted, it cannot be recovered.
|
sl@0
|
86 |
|
sl@0
|
87 |
@return KErrNone The operation has completed successfully;
|
sl@0
|
88 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
89 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
90 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
91 |
|
sl@0
|
92 |
@capability Note For a secure shared database, the caller must satisfy the write
|
sl@0
|
93 |
access policy for the database.
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
EXPORT_C TInt RDbDatabase::Recover()
|
sl@0
|
96 |
{
|
sl@0
|
97 |
return Utility(iDatabase,CDbDatabase::ERecover);
|
sl@0
|
98 |
}
|
sl@0
|
99 |
|
sl@0
|
100 |
/**
|
sl@0
|
101 |
Returns the currently available size information for the database.
|
sl@0
|
102 |
This comprises a size in bytes for the database objects and a percentage used value which indicates
|
sl@0
|
103 |
how much of that size is live data-the remainder may be available for compaction.
|
sl@0
|
104 |
Some types of database may not be able to report this information, e.g. a RDbStoreDatabase,
|
sl@0
|
105 |
and others may need to have UpdateStats() in order to provide valid data.
|
sl@0
|
106 |
In these cases, the values in the RDbDatabase::TSize structure will contain an error value to indicate this.
|
sl@0
|
107 |
|
sl@0
|
108 |
@return RDbDatabase::TSize object, containing the database size and the percentage used value.
|
sl@0
|
109 |
*/
|
sl@0
|
110 |
EXPORT_C RDbDatabase::TSize RDbDatabase::Size() const
|
sl@0
|
111 |
{
|
sl@0
|
112 |
TSize size;
|
sl@0
|
113 |
size.iSize=Property(iDatabase,CDbDatabase::ESize);
|
sl@0
|
114 |
size.iUsage=Property(iDatabase,CDbDatabase::EUsage);
|
sl@0
|
115 |
return size;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
/**
|
sl@0
|
119 |
Update any calculated statistics for the database.
|
sl@0
|
120 |
Note that this can take an extended time to complete,
|
sl@0
|
121 |
so an incremental form is also provided - RDbIncremental::UpdateStats().
|
sl@0
|
122 |
|
sl@0
|
123 |
@return KErrNone The operation has completed successfully;
|
sl@0
|
124 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
125 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
126 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
127 |
|
sl@0
|
128 |
@capability Note For a secure shared database, the caller must satisfy the write
|
sl@0
|
129 |
access policy for the database.
|
sl@0
|
130 |
|
sl@0
|
131 |
@see RDbIncremental::UpdateStats()
|
sl@0
|
132 |
*/
|
sl@0
|
133 |
EXPORT_C TInt RDbDatabase::UpdateStats()
|
sl@0
|
134 |
{
|
sl@0
|
135 |
return Utility(iDatabase,CDbDatabase::EStats);
|
sl@0
|
136 |
}
|
sl@0
|
137 |
|
sl@0
|
138 |
/**
|
sl@0
|
139 |
Synchronous database compaction.
|
sl@0
|
140 |
Compacts the database and returns when complete.
|
sl@0
|
141 |
Note that this can take an extended time to complete, so an incremental form is also provided.
|
sl@0
|
142 |
There is a complementary interface to calculate and report database size and usage information, which
|
sl@0
|
143 |
can be used by the clients to determine when it may be appropriate to compact the database.
|
sl@0
|
144 |
|
sl@0
|
145 |
@see RDbIncremental::Compact()
|
sl@0
|
146 |
@see RDbDatabase::UpdateStats()
|
sl@0
|
147 |
@see RDbDatabase::Size()
|
sl@0
|
148 |
|
sl@0
|
149 |
@return KErrNone The operation has completed successfully;
|
sl@0
|
150 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
151 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
152 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
153 |
|
sl@0
|
154 |
@capability Note For a secure shared database, the caller must satisfy the write
|
sl@0
|
155 |
access policy for the database.
|
sl@0
|
156 |
*/
|
sl@0
|
157 |
EXPORT_C TInt RDbDatabase::Compact()
|
sl@0
|
158 |
{
|
sl@0
|
159 |
return Utility(iDatabase,CDbDatabase::ECompact);
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
|
sl@0
|
163 |
/**
|
sl@0
|
164 |
Drops the tables and destroys the database.
|
sl@0
|
165 |
This handle is closed on successful destruction.
|
sl@0
|
166 |
|
sl@0
|
167 |
@return KErrNone The operation has completed successfully;
|
sl@0
|
168 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
169 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
170 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
171 |
|
sl@0
|
172 |
@capability Note For a secure shared database, the caller must satisfy the schema
|
sl@0
|
173 |
access policy for the database.
|
sl@0
|
174 |
*/
|
sl@0
|
175 |
EXPORT_C TInt RDbDatabase::Destroy()
|
sl@0
|
176 |
{
|
sl@0
|
177 |
CDbTableNames* t=NULL;
|
sl@0
|
178 |
TRAPD(r,t=TableNamesL());
|
sl@0
|
179 |
if (r!=KErrNone)
|
sl@0
|
180 |
return r;
|
sl@0
|
181 |
TInt ii=t->Count();
|
sl@0
|
182 |
do
|
sl@0
|
183 |
{
|
sl@0
|
184 |
if (--ii<0)
|
sl@0
|
185 |
{
|
sl@0
|
186 |
r=iDatabase->Destroy();
|
sl@0
|
187 |
if (r==KErrNone)
|
sl@0
|
188 |
iDatabase.Close();
|
sl@0
|
189 |
break;
|
sl@0
|
190 |
}
|
sl@0
|
191 |
r=DropTable((*t)[ii]);
|
sl@0
|
192 |
} while (r==KErrNone);
|
sl@0
|
193 |
delete t;
|
sl@0
|
194 |
return r;
|
sl@0
|
195 |
}
|
sl@0
|
196 |
|
sl@0
|
197 |
/**
|
sl@0
|
198 |
Begins a transaction.
|
sl@0
|
199 |
|
sl@0
|
200 |
DBMS server only supports one 'granularity' of transaction lock: the whole database.
|
sl@0
|
201 |
Beginning a transaction locks the database, and this can fail if another client has already got a lock which
|
sl@0
|
202 |
excludes this client.
|
sl@0
|
203 |
If the same client has already locked the database it will be panic'd.
|
sl@0
|
204 |
The function is guaranteed to return KErrNone for client-side access.
|
sl@0
|
205 |
|
sl@0
|
206 |
DBMS transactions do not provide any form of isolation between the clients:
|
sl@0
|
207 |
while one client is updating a table within a transaction, other clients will be able to see the changes as
|
sl@0
|
208 |
they are made. As a result, if a client retrieves two separate rows from a database there is no automatic
|
sl@0
|
209 |
guarantee that the data being retrieved has not been changed between the reads - this can lead to
|
sl@0
|
210 |
an 'inconsistent read'. A client can prevent an update while retrieving related rows by enclosing the individual
|
sl@0
|
211 |
reads within a transaction. Such a transaction will not modify the database and only operates as a read-lock:
|
sl@0
|
212 |
releasing such a lock using Commit() or Rollback() will not affect the database in any way.
|
sl@0
|
213 |
|
sl@0
|
214 |
How RDbDatabase::Begin() works:
|
sl@0
|
215 |
- on a shared database Begin() will attempt to get a shared read-lock on the database, and will fail with
|
sl@0
|
216 |
KErrLocked if anyone has an exclusive write-lock. Other clients with read-locks will not cause this operation
|
sl@0
|
217 |
to fail.
|
sl@0
|
218 |
- any operation which will modify the database attempts to gain an exclusive write-lock on the database,
|
sl@0
|
219 |
and will fail with KErrLocked if anyone else has any lock on the database. If the current client already has
|
sl@0
|
220 |
a read-lock as a result of calling Begin(), then it will be upgraded to an exclusive write-lock.
|
sl@0
|
221 |
- Commit() or Rollback() after a read-lock has been acquired (but not a write-lock) will release that client's
|
sl@0
|
222 |
lock. The database will only be considered to be unlocked when all such locks are removed by all clients,
|
sl@0
|
223 |
when it will report a EUnlock event to any notifiers.
|
sl@0
|
224 |
- Commit() or Rollback() after a write-lock has been acquired will release the lock, and report the ECommit or
|
sl@0
|
225 |
ERollback event to any notifiers.
|
sl@0
|
226 |
- automatic transactions will be used as at present if updates are made outside of explicit transactions,
|
sl@0
|
227 |
and such updates will also be able to fail with KErrLocked if an exclusive lock cannot be acquired.
|
sl@0
|
228 |
|
sl@0
|
229 |
Allowing read-locks to be shared enables greater concurrency at the same time as providing some safe guard
|
sl@0
|
230 |
against inconsistent reads. It does, however, lead to the possibility of deadlock: two clients wanting to update
|
sl@0
|
231 |
the database can reach deadlock if they both Begin() a transaction before either of them starts an update,
|
sl@0
|
232 |
then one client's read-lock will prevent the other from upgrading to a write lock and vice versa. The only way out
|
sl@0
|
233 |
of this is to code the clients in such a way as to back out of such a deadlock situation, rather than retry
|
sl@0
|
234 |
forever without releasing the locks.
|
sl@0
|
235 |
|
sl@0
|
236 |
A client will be able to change the database schema while other clients are using the database,
|
sl@0
|
237 |
as long as the other clients have no locks on it. As described above, other clients may find that their
|
sl@0
|
238 |
rowsets are then invalidated asynchronously as a result of this.
|
sl@0
|
239 |
|
sl@0
|
240 |
@return KErrNone The operation has completed successfully;
|
sl@0
|
241 |
KErrLocked, the database is locked by another client;
|
sl@0
|
242 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
243 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
244 |
|
sl@0
|
245 |
@capability Note For a secure shared database, the caller must satisfy either the read, write
|
sl@0
|
246 |
or the schema access policy for the database.
|
sl@0
|
247 |
*/
|
sl@0
|
248 |
EXPORT_C TInt RDbDatabase::Begin()
|
sl@0
|
249 |
{
|
sl@0
|
250 |
return iDatabase->Begin();
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
/**
|
sl@0
|
254 |
Commits the current transaction.
|
sl@0
|
255 |
|
sl@0
|
256 |
@return KErrNone The operation has completed successfully;
|
sl@0
|
257 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
258 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
259 |
|
sl@0
|
260 |
@capability Note For a secure shared database, the caller must satisfy either the read, write
|
sl@0
|
261 |
or the schema access policy for the database.
|
sl@0
|
262 |
*/
|
sl@0
|
263 |
EXPORT_C TInt RDbDatabase::Commit()
|
sl@0
|
264 |
{
|
sl@0
|
265 |
return iDatabase->Commit();
|
sl@0
|
266 |
}
|
sl@0
|
267 |
|
sl@0
|
268 |
/**
|
sl@0
|
269 |
Rollbacks the current transaction.
|
sl@0
|
270 |
|
sl@0
|
271 |
@capability Note For a secure shared database, the caller must satisfy either the read, write
|
sl@0
|
272 |
or the schema access policy for the database.
|
sl@0
|
273 |
*/
|
sl@0
|
274 |
EXPORT_C void RDbDatabase::Rollback()
|
sl@0
|
275 |
{
|
sl@0
|
276 |
iDatabase->Rollback();
|
sl@0
|
277 |
}
|
sl@0
|
278 |
|
sl@0
|
279 |
/**
|
sl@0
|
280 |
@return True if the database is in a transaction, false otherwise.
|
sl@0
|
281 |
*/
|
sl@0
|
282 |
EXPORT_C TBool RDbDatabase::InTransaction() const
|
sl@0
|
283 |
{
|
sl@0
|
284 |
return Property(iDatabase,CDbDatabase::EInTransaction);
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
/**
|
sl@0
|
288 |
Creates a table on the database.
|
sl@0
|
289 |
|
sl@0
|
290 |
@param aName Table name.
|
sl@0
|
291 |
@param aColSet A set of column definitions which describe the table structure.
|
sl@0
|
292 |
@param aPrimaryKey Primary key definition. If it is NULL, no primary key will be created for the new table.
|
sl@0
|
293 |
|
sl@0
|
294 |
@return KErrNone The operation has completed successfully;
|
sl@0
|
295 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
296 |
KErrAlreadyExists, a table with that name already exists;
|
sl@0
|
297 |
KErrArgument, empty column set, duplicated column name, invalid column length;
|
sl@0
|
298 |
KErrBadName, invalid table name, invalid column name (containing spaces for example);
|
sl@0
|
299 |
KErrNotSupported, unknown column type, unknown column attributes;
|
sl@0
|
300 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
301 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
302 |
|
sl@0
|
303 |
@capability Note For a secure shared database, the caller must satisfy the schema
|
sl@0
|
304 |
access policy for the database.
|
sl@0
|
305 |
*/
|
sl@0
|
306 |
EXPORT_C TInt RDbDatabase::CreateTable(const TDesC& aName,const CDbColSet& aColSet,const CDbKey* aPrimaryKey)
|
sl@0
|
307 |
{
|
sl@0
|
308 |
TRAPD(r,iDatabase->CreateTableL(aName,aColSet,aPrimaryKey));
|
sl@0
|
309 |
return r;
|
sl@0
|
310 |
}
|
sl@0
|
311 |
|
sl@0
|
312 |
/**
|
sl@0
|
313 |
Drops a table synchronously.
|
sl@0
|
314 |
|
sl@0
|
315 |
@param aName Table name.
|
sl@0
|
316 |
|
sl@0
|
317 |
@return KErrNone The operation has completed successfully;
|
sl@0
|
318 |
KErrNotFound, there is no table with the supplied name;
|
sl@0
|
319 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
320 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
321 |
|
sl@0
|
322 |
@capability Note For a secure shared database, the caller must satisfy the schema
|
sl@0
|
323 |
access policy for the database.
|
sl@0
|
324 |
*/
|
sl@0
|
325 |
EXPORT_C TInt RDbDatabase::DropTable(const TDesC& aName)
|
sl@0
|
326 |
{
|
sl@0
|
327 |
TInt step;
|
sl@0
|
328 |
TRAPD(r,CompleteDDLL(iDatabase->DropTableL(aName,step),step));
|
sl@0
|
329 |
return r;
|
sl@0
|
330 |
}
|
sl@0
|
331 |
|
sl@0
|
332 |
/**
|
sl@0
|
333 |
Alters a table synchronously.
|
sl@0
|
334 |
|
sl@0
|
335 |
@param aName Table name.
|
sl@0
|
336 |
@param aColSet A new set of column definitions which describe the table structure.
|
sl@0
|
337 |
|
sl@0
|
338 |
@return KErrNone The operation has completed successfully;
|
sl@0
|
339 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
340 |
KErrArgument, empty column set, duplicated column name, invalid column length;
|
sl@0
|
341 |
KErrNotFound, there is no table with the supplied name;
|
sl@0
|
342 |
KErrNotSupported, unknown column type, unknown column attributes;
|
sl@0
|
343 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
344 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
345 |
|
sl@0
|
346 |
@capability Note For a secure shared database, the caller must satisfy the schema
|
sl@0
|
347 |
access policy for the database.
|
sl@0
|
348 |
*/
|
sl@0
|
349 |
EXPORT_C TInt RDbDatabase::AlterTable(const TDesC& aName,const CDbColSet& aColSet)
|
sl@0
|
350 |
{
|
sl@0
|
351 |
TInt step;
|
sl@0
|
352 |
TRAPD(r,CompleteDDLL(iDatabase->AlterTableL(aName,aColSet,step),step));
|
sl@0
|
353 |
return r;
|
sl@0
|
354 |
}
|
sl@0
|
355 |
|
sl@0
|
356 |
/**
|
sl@0
|
357 |
Creates an index synchronously.
|
sl@0
|
358 |
|
sl@0
|
359 |
@param aName Index name.
|
sl@0
|
360 |
@param aTableName Table name.
|
sl@0
|
361 |
@param aKey Index definition
|
sl@0
|
362 |
|
sl@0
|
363 |
@return KErrNone The operation has completed successfully;
|
sl@0
|
364 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
365 |
KErrBadName, invalid index name (containing spaces for example);
|
sl@0
|
366 |
KErrAlreadyExists, an index with that name already exists;
|
sl@0
|
367 |
KErrNotFound, there is no table with that name;
|
sl@0
|
368 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
369 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
370 |
|
sl@0
|
371 |
@capability Note For a secure shared database, the caller must satisfy the schema
|
sl@0
|
372 |
access policy for the database.
|
sl@0
|
373 |
*/
|
sl@0
|
374 |
EXPORT_C TInt RDbDatabase::CreateIndex(const TDesC& aName,const TDesC& aTableName,const CDbKey& aKey)
|
sl@0
|
375 |
{
|
sl@0
|
376 |
TInt step;
|
sl@0
|
377 |
TRAPD(r,CompleteDDLL(iDatabase->CreateIndexL(aName,aTableName,aKey,step),step));
|
sl@0
|
378 |
return r;
|
sl@0
|
379 |
}
|
sl@0
|
380 |
|
sl@0
|
381 |
/**
|
sl@0
|
382 |
Drops an index synchronously.
|
sl@0
|
383 |
|
sl@0
|
384 |
@param aName Index name.
|
sl@0
|
385 |
@param aTableName Table name.
|
sl@0
|
386 |
|
sl@0
|
387 |
@return KErrNone The operation has completed successfully;
|
sl@0
|
388 |
KErrNotFound, there is no table or index with that name;
|
sl@0
|
389 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
390 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
391 |
|
sl@0
|
392 |
@capability Note For a secure shared database, the caller must satisfy the schema
|
sl@0
|
393 |
access policy for the database.
|
sl@0
|
394 |
*/
|
sl@0
|
395 |
EXPORT_C TInt RDbDatabase::DropIndex(const TDesC& aName,const TDesC& aTableName)
|
sl@0
|
396 |
{
|
sl@0
|
397 |
TInt step;
|
sl@0
|
398 |
TRAPD(r,CompleteDDLL(iDatabase->DropIndexL(aName,aTableName,step),step));
|
sl@0
|
399 |
return r;
|
sl@0
|
400 |
}
|
sl@0
|
401 |
|
sl@0
|
402 |
/**
|
sl@0
|
403 |
Executes a SQL statement on the database, and returns when it is complete.
|
sl@0
|
404 |
The aComp parameter is used in the execution of some SQL statements:
|
sl@0
|
405 |
- in CREATE INDEX statements it specifies the comparison operation used for text columns in the index key;
|
sl@0
|
406 |
- in UPDATE and DELETE statements it specifies the comparison operation used to evaluate the WHERE clause;
|
sl@0
|
407 |
Other statements ignore the value of aComp.
|
sl@0
|
408 |
A negative return value indicates an error. A successful DDL operation always returns KErrNone (zero),
|
sl@0
|
409 |
a successful DML operation returns the number of rows that were inserted, updated or deleted by the operation.
|
sl@0
|
410 |
|
sl@0
|
411 |
@param aSql A string of 16-bit wide characters containing one SQL statement.
|
sl@0
|
412 |
@param aComparison Tells the DBMS how to compare text and long text columns.
|
sl@0
|
413 |
|
sl@0
|
414 |
@return Zero or positive value, the number of rows that were inserted, updated or deleted by the operation;
|
sl@0
|
415 |
KErrLocked, the database is locked by another client;
|
sl@0
|
416 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
417 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
418 |
|
sl@0
|
419 |
@capability Note For a secure shared database, the caller must satisfy:
|
sl@0
|
420 |
- the schema access policy for the database, if the SQL statement is
|
sl@0
|
421 |
CREATE/DROP/ALTER;
|
sl@0
|
422 |
- the write access policy for the table in the SQL, if the SQL statement is
|
sl@0
|
423 |
INSERT/UPDATE/DELETE;
|
sl@0
|
424 |
*/
|
sl@0
|
425 |
EXPORT_C TInt RDbDatabase::Execute(const TDesC& aSql,TDbTextComparison aComparison)
|
sl@0
|
426 |
{
|
sl@0
|
427 |
TInt ret;
|
sl@0
|
428 |
TRAP(ret, \
|
sl@0
|
429 |
CDbIncremental* inc=iDatabase->ExecuteL(aSql,aComparison,ret); \
|
sl@0
|
430 |
if (inc) \
|
sl@0
|
431 |
ret ? CompleteDDLL(inc,ret) : CompleteDMLL(inc,ret); \
|
sl@0
|
432 |
)
|
sl@0
|
433 |
return ret;
|
sl@0
|
434 |
}
|
sl@0
|
435 |
|
sl@0
|
436 |
/**
|
sl@0
|
437 |
Lists the tables on the database.
|
sl@0
|
438 |
|
sl@0
|
439 |
@return A pointer to a CDbTableNames container with table names. The caller is responsible for destroying
|
sl@0
|
440 |
the returned CDbTableNames instance.
|
sl@0
|
441 |
|
sl@0
|
442 |
@leave KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
443 |
Note that the function may leave with other system-wide error codes.
|
sl@0
|
444 |
*/
|
sl@0
|
445 |
EXPORT_C CDbTableNames* RDbDatabase::TableNamesL() const
|
sl@0
|
446 |
{
|
sl@0
|
447 |
CDbTableNames* names=CDbTableNames::NewLC();
|
sl@0
|
448 |
iDatabase->TablesL(*names);
|
sl@0
|
449 |
CleanupStack::Pop();
|
sl@0
|
450 |
return names;
|
sl@0
|
451 |
}
|
sl@0
|
452 |
|
sl@0
|
453 |
/**
|
sl@0
|
454 |
Returns the table definition.
|
sl@0
|
455 |
|
sl@0
|
456 |
@param aName Table name.
|
sl@0
|
457 |
|
sl@0
|
458 |
@return A pointer to a CDbColSet container with column definitions . The caller is responsible for destroying
|
sl@0
|
459 |
the returned CDbColSet instance.
|
sl@0
|
460 |
|
sl@0
|
461 |
@leave KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
462 |
KErrNotFound, no table with that name exists;
|
sl@0
|
463 |
Note that the function may leave with other system-wide error codes.
|
sl@0
|
464 |
*/
|
sl@0
|
465 |
EXPORT_C CDbColSet* RDbDatabase::ColSetL(const TDesC& aName) const
|
sl@0
|
466 |
{
|
sl@0
|
467 |
CDbColSet* set=CDbColSet::NewLC();
|
sl@0
|
468 |
iDatabase->ColumnsL(*set,aName);
|
sl@0
|
469 |
CleanupStack::Pop();
|
sl@0
|
470 |
return set;
|
sl@0
|
471 |
}
|
sl@0
|
472 |
|
sl@0
|
473 |
/**
|
sl@0
|
474 |
Lists the indexes on a table.
|
sl@0
|
475 |
|
sl@0
|
476 |
@param aTable Table name.
|
sl@0
|
477 |
|
sl@0
|
478 |
@return A pointer to a CDbIndexNames container with column definitions . The caller is responsible for destroying
|
sl@0
|
479 |
the returned CDbIndexNames instance.
|
sl@0
|
480 |
|
sl@0
|
481 |
@leave KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
482 |
KErrNotFound, no table with that name exists;
|
sl@0
|
483 |
Note that the function may leave with other system-wide error codes.
|
sl@0
|
484 |
*/
|
sl@0
|
485 |
EXPORT_C CDbIndexNames* RDbDatabase::IndexNamesL(const TDesC& aTable) const
|
sl@0
|
486 |
{
|
sl@0
|
487 |
CDbIndexNames* names=CDbIndexNames::NewLC();
|
sl@0
|
488 |
iDatabase->IndexesL(*names,aTable);
|
sl@0
|
489 |
CleanupStack::Pop();
|
sl@0
|
490 |
return names;
|
sl@0
|
491 |
}
|
sl@0
|
492 |
|
sl@0
|
493 |
/**
|
sl@0
|
494 |
Returns the index key.
|
sl@0
|
495 |
|
sl@0
|
496 |
@param aName Index name.
|
sl@0
|
497 |
@param aTable Table name.
|
sl@0
|
498 |
|
sl@0
|
499 |
@return A pointer to a CDbKey object containing the index definition. The caller is responsible for destroying
|
sl@0
|
500 |
the returned CDbKey instance.
|
sl@0
|
501 |
|
sl@0
|
502 |
@leave KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
503 |
KErrNotFound, no index or table with that name exists;
|
sl@0
|
504 |
Note that the function may leave with other system-wide error codes.
|
sl@0
|
505 |
*/
|
sl@0
|
506 |
EXPORT_C CDbKey* RDbDatabase::KeyL(const TDesC& aName,const TDesC& aTable) const
|
sl@0
|
507 |
{
|
sl@0
|
508 |
CDbKey* key=CDbKey::NewLC();
|
sl@0
|
509 |
iDatabase->KeysL(*key,aName,aTable);
|
sl@0
|
510 |
CleanupStack::Pop();
|
sl@0
|
511 |
return key;
|
sl@0
|
512 |
}
|
sl@0
|
513 |
|
sl@0
|
514 |
// class CDbDatabase
|
sl@0
|
515 |
|
sl@0
|
516 |
CDbNotifier* CDbDatabase::NotifierL()
|
sl@0
|
517 |
{
|
sl@0
|
518 |
return AttachContext(this,OpenNotifierL());
|
sl@0
|
519 |
}
|
sl@0
|
520 |
|
sl@0
|
521 |
CDbIncremental* CDbDatabase::UtilityL(CDbDatabase::TUtility aType,TInt& aStep)
|
sl@0
|
522 |
{
|
sl@0
|
523 |
return AttachContext(this,OpenUtilityL(aType,aStep));
|
sl@0
|
524 |
}
|
sl@0
|
525 |
|
sl@0
|
526 |
CDbIncremental* CDbDatabase::DropTableL(const TDesC& aTable,TInt& aStep)
|
sl@0
|
527 |
{
|
sl@0
|
528 |
return AttachContext(this,OpenDropTableL(aTable,aStep));
|
sl@0
|
529 |
}
|
sl@0
|
530 |
|
sl@0
|
531 |
CDbIncremental* CDbDatabase::AlterTableL(const TDesC& aTable,const CDbColSet& aNewDef,TInt& aStep)
|
sl@0
|
532 |
{
|
sl@0
|
533 |
return AttachContext(this,OpenAlterTableL(aTable,aNewDef,aStep));
|
sl@0
|
534 |
}
|
sl@0
|
535 |
|
sl@0
|
536 |
CDbIncremental* CDbDatabase::CreateIndexL(const TDesC& aName,const TDesC& aTable,const CDbKey& aKey,TInt& aStep)
|
sl@0
|
537 |
{
|
sl@0
|
538 |
return AttachContext(this,OpenCreateIndexL(aName,aTable,aKey,aStep));
|
sl@0
|
539 |
}
|
sl@0
|
540 |
|
sl@0
|
541 |
CDbIncremental* CDbDatabase::DropIndexL(const TDesC& aName,const TDesC& aTable,TInt& aStep)
|
sl@0
|
542 |
{
|
sl@0
|
543 |
return AttachContext(this,OpenDropIndexL(aName,aTable,aStep));
|
sl@0
|
544 |
}
|
sl@0
|
545 |
|
sl@0
|
546 |
CDbIncremental* CDbDatabase::ExecuteL(const TDesC& aSql,TDbTextComparison aComparison,TInt& aInit)
|
sl@0
|
547 |
{
|
sl@0
|
548 |
return AttachContext(this,OpenExecuteL(aSql,aComparison,aInit));
|
sl@0
|
549 |
}
|
sl@0
|
550 |
|
sl@0
|
551 |
CDbCursor* CDbDatabase::ViewL(const TDbQuery& aQuery,const TDbWindow& aWindow,RDbRowSet::TAccess anAccess)
|
sl@0
|
552 |
{
|
sl@0
|
553 |
return AttachContext(this,PrepareViewL(aQuery,aWindow,anAccess));
|
sl@0
|
554 |
}
|
sl@0
|
555 |
|
sl@0
|
556 |
CDbCursor* CDbDatabase::TableL(const TDesC &aName,RDbRowSet::TAccess anAccess)
|
sl@0
|
557 |
{
|
sl@0
|
558 |
return AttachContext(this,OpenTableL(aName,anAccess));
|
sl@0
|
559 |
}
|
sl@0
|
560 |
|
sl@0
|
561 |
//
|
sl@0
|
562 |
// Reserved for future development
|
sl@0
|
563 |
//
|
sl@0
|
564 |
EXPORT_C void CDbDatabase::Reserved_1()
|
sl@0
|
565 |
{
|
sl@0
|
566 |
}
|
sl@0
|
567 |
|
sl@0
|
568 |
//
|
sl@0
|
569 |
// Reserved for future development
|
sl@0
|
570 |
//
|
sl@0
|
571 |
EXPORT_C void CDbDatabase::Reserved_2()
|
sl@0
|
572 |
{
|
sl@0
|
573 |
}
|