First public contribution.
1 // Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "SqlAssert.h" //ESqlPanicInvalidObj, ESqlPanicObjExists
17 #include "SqlDatabaseImpl.h" //CSqlDatabaseImpl
18 #include "OstTraceDefinitions.h"
19 #ifdef OST_TRACE_COMPILER_IN_USE
20 #include "SqlDatabaseTraces.h"
22 #include "SqlTraceDef.h"
25 Gets the category of the return code value that is returned by
26 a call to the SQL API.
28 A call to the SQL API may complete with a non-zero return code indicating that some
29 unexpected behaviour has occurred. This can be categorised in a number of ways,
30 for example, as a Symbian OS error, or as a database error etc etc.
32 This function takes the return code value and gets the category associated with
33 that value. The categories are defined by the enum values of
34 the TSqlRetCodeClass enum.
36 @param aSqlRetCode The return code value returned from a call to any (member)
37 function that forms part of the SQL interface.
39 @return The category associated with the specified return code value. This is
40 one of the TSqlRetCodeClass enum values.
49 EXPORT_C TSqlRetCodeClass SqlRetCodeClass(TInt aSqlRetCode)
53 return ESqlInformation;
55 else if(aSqlRetCode <= KSqlErrGeneral)
63 Initialises the pointer to the implementation object to NULL.
67 EXPORT_C RSqlDatabase::RSqlDatabase() :
73 Creates a new shared non-secure or private secure database.
75 @param aDbFileName The full path name of the file that is to host the database.
76 @param aConfig the configuration string "PARAM=VALUE;....".
77 The following parameters can be set using the configuration string:
78 cache_size=value - where "value" is the cache size in pages.
79 "value" must be a positive integer number;
80 page_size=value - where "value" is the page size in bytes.
81 The "page_size" parameter can accept the following values:
82 512, 1024, 2048, 4096, 8192, 16384, 32768;
83 encoding=value - where "value" is the desired database encoding.
84 "value" could be either "UTF-8" or "UTF-16";
85 compaction=value - where "value" is the desired compaction mode.
86 "value" could be either "background", "synchronous" or "manual".
88 @return KErrNone, the operation has completed successfully;
89 KErrNoMemory, an out of memory condition has occurred;
90 KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
91 KErrAlreadyExists, the file already exists;
92 KErrNotReady, the drive does not exist or is not ready;
93 KErrInUse, the file is already open;
94 KErrArgument, the file name refers to a secure database, invalid configuration string, invalid parameter values
95 in the configuration string.
96 Note that database specific errors categorised as ESqlDbError, and
97 other system-wide error codes may also be returned.
101 EXPORT_C TInt RSqlDatabase::Create(const TDesC& aDbFileName, const TDesC8* aConfig)
103 __SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8));
104 __SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
105 SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_CREATE_ENTRY, "Entry;0x%X;RSqlDatabase::Create;aDbFileName=%S;aConfig=%s", (TUint)this, __SQLPRNSTR(aDbFileName), __SQLPRNSTR8(config, des16prnbuf)));
106 TRAPD(err, iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbCreate, aDbFileName, NULL, aConfig));
107 SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_CREATE_Exit, "Exit;0x%X;RSqlDatabase::Create;iImpl=0x%X;err=%d", (TUint)this, (TUint)iImpl, err));
112 Creates a new shared secure database.
114 @param aDbFileName The name of the file that is to host the database.
115 The format of the name is \<drive\>:\<[SID]database file name excluding the path\>.
116 "[SID]" refers to the application SID.
117 @param aSecurityPolicy The container for the security policies.
118 @param aConfig the configuration string "PARAM=VALUE;...."
119 The following parameters can be set using the configuration string:
120 cache_size=value - where "value" is the cache size in pages.
121 "value" must be a positive integer number;
122 page_size=value - where "value" is the page size in bytes.
123 The "page_size" parameter can accept the following values:
124 512, 1024, 2048, 4096, 8192, 16384, 32768;
125 encoding=value - where "value" is the desired database encoding.
126 "value" could be either "UTF-8" or "UTF-16";
127 compaction=value - where "value" is the desired compaction mode.
128 "value" could be either "background", "synchronous" or "manual".
131 @return KErrNone, the operation has completed successfully;
132 KErrNoMemory, an out of memory condition has occurred;
133 KErrArgument, the file name does not refer to a secure database;
134 KErrArgument, system table name found in the security policies (aSecurityPolicy),
135 invalid configuration string, invalid parameter values
136 in the configuration string;
137 KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
138 KErrAlreadyExists, the file already exists;
139 KErrNotReady, the drive does not exist or is not ready;
140 KErrInUse, the file is already open;
141 KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
142 Note that database specific errors categorised as ESqlDbError, and
143 other system-wide error codes may also be returned.
145 @capability The calling application must satisfy the database policy of RSqlSecurityPolicy::ESchemaPolicy type;
147 @see RSqlSecurityPolicy
148 @see RSqlSecurityPolicy::TPolicyType
150 EXPORT_C TInt RSqlDatabase::Create(const TDesC& aDbFileName,
151 const RSqlSecurityPolicy& aSecurityPolicy, const TDesC8* aConfig)
153 __SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8));
154 __SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
155 SQL_TRACE_BORDER(OstTraceExt4(TRACE_BORDER, RSQLDATABASE_CREATE2_ENTRY, "Entry;0x%X;RSqlDatabase::Create;aDbFileName=%S;aSecurityPolicy=0x%X;aConfig=%s", (TUint)this, __SQLPRNSTR(aDbFileName), (TUint)&aSecurityPolicy, __SQLPRNSTR8(config, des16prnbuf)));
156 TRAPD(err, iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbCreateSecure, aDbFileName, &aSecurityPolicy.Impl(), aConfig));
157 SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_CREATE2_Exit, "Exit;0x%X;RSqlDatabase::Create;iImpl=0x%X;err=%d", (TUint)this, (TUint)iImpl, err));
162 Opens an existing database, which can be:
169 @param aDbFileName The name of the file that hosts the database. If this is
170 a secure database, then the format of the name must be:
171 \<drive\>:\<[SID]database file name excluding the path\>.
172 If this is a non-secure database, then aDbFileName has to be the full database file name.
173 "[SID]" refers to SID of the application which created the database.
174 @param aConfig the configuration string "PARAM=VALUE;...."
175 The following parameters can be set using the configuration string:
176 cache_size=value - where "value" is the cache size in pages.
177 "value" must be a positive integer number;
180 @return KErrNone, the operation has completed successfully;
181 KErrNoMemory, an out of memory condition has occurred;
182 KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
183 KErrNotReady, the drive does not exist or is not ready;
184 KErrInUse, the file is already open;
185 KErrNotFound, database file not found;
186 KErrArgument, invalid configuration string, invalid parameter values
187 in the configuration string;
188 KErrGeneral, missing or invalid security policies (if the database to be opened is a secure database);
189 KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
190 KErrNotSupported, incompatible SQL security version (if the database to be opened is a secure database).
191 Note that database specific errors categorised as ESqlDbError, and
192 other system-wide error codes may also be returned.
194 @capability None, if aDbFileName refers to a non-secure database;
195 RSqlSecurityPolicy::ESchemaPolicy or
196 RSqlSecurityPolicy::EReadPolicy or
197 RSqlSecurityPolicy::EWritePolicy database policy type, if aDbFileName refers to a secure database;
199 @see RSqlSecurityPolicy
200 @see RSqlSecurityPolicy::TPolicyType
202 EXPORT_C TInt RSqlDatabase::Open(const TDesC& aDbFileName, const TDesC8* aConfig)
204 __SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8));
205 __SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
206 SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_OPEN_ENTRY, "Entry;0x%X;RSqlDatabase::Open;aDbFileName=%S;aConfig=%s", (TUint)this, __SQLPRNSTR(aDbFileName), __SQLPRNSTR8(config, des16prnbuf)));
207 TRAPD(err, iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbOpen, aDbFileName, NULL, aConfig));
208 SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_OPEN_EXIT, "Exit;0x%X;RSqlDatabase::Open;iImpl=0x%X;err=%d", (TUint)this, (TUint)iImpl, err));
213 Creates a new shared non-secure or private secure database.
215 @param aDbFileName The full path name of the file that is to host the database.
216 @param aConfig the configuration string "PARAM=VALUE;...."
217 The following parameters can be set using the configuration string:
218 cache_size=value - where "value" is the cache size in pages.
219 "value" must be a positive integer number;
220 page_size=value - where "value" is the page size in bytes.
221 The "page_size" parameter can accept the following values:
222 512, 1024, 2048, 4096, 8192, 16384, 32768;
223 encoding=value - where "value" is the desired database encoding.
224 "value" could be either "UTF-8" or "UTF-16";
225 compaction=value - where "value" is the desired compaction mode.
226 "value" could be either "background", "synchronous" or "manual".
229 @leave KErrNoMemory, an out of memory condition has occurred;
230 KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
231 KErrAlreadyExists, the file already exists;
232 KErrNotReady, the drive does not exist or is not ready;
233 KErrInUse, the file is already open;
234 KErrArgument, the file name refers to a secure database,
235 invalid configuration string, invalid parameter values
236 in the configuration string.
237 Note that the function may leave with database specific errors categorised as ESqlDbError and
238 other system-wide error codes.
242 EXPORT_C void RSqlDatabase::CreateL(const TDesC& aDbFileName, const TDesC8* aConfig)
244 __SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8));
245 __SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
246 SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_CREATEL_ENTRY, "Entry;0x%X;RSqlDatabase::CreateL;aDbFileName=%S;aConfig=%s", (TUint)this, __SQLPRNSTR(aDbFileName), __SQLPRNSTR8(config, des16prnbuf)));
247 iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbCreate, aDbFileName, NULL, aConfig);
248 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_CREATEL_EXIT, "Entry;0x%X;RSqlDatabase::CreateL;iImpl=0x%X", (TUint)this, (TUint)iImpl));
252 Creates a new shared secure database.
253 @param aDbFileName The name of the file that is to host the database.
254 The format of the name is \<drive\>:\<[SID]database file name excluding the path\>.
255 "[SID]" refers to the application SID.
256 @param aSecurityPolicy The container for the security policies.
257 @param aConfig the configuration string "PARAM=VALUE;...."
258 The following parameters can be set using the configuration string:
259 cache_size=value - where "value" is the cache size in pages.
260 "value" must be a positive integer number;
261 page_size=value - where "value" is the page size in bytes.
262 The "page_size" parameter can accept the following values:
263 512, 1024, 2048, 4096, 8192, 16384, 32768;
264 encoding=value - where "value" is the desired database encoding.
265 "value" could be either "UTF-8" or "UTF-16";
267 compaction=value - where "value" is the desired compaction mode.
268 "value" could be either "background", "synchronous" or "manual".
270 @leave KErrNoMemory, an out of memory condition has occurred;
271 KErrArgument, the file name does not refer to a secure database;
272 KErrArgument, system table name found in the security policies (aSecurityPolicy),
273 invalid configuration string, invalid parameter values
274 in the configuration string;
275 KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
276 KErrAlreadyExists, the file already exists;
277 KErrNotReady, the drive does not exist or is not ready;
278 KErrInUse, the file is already open;
279 KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
280 Note that the function may leave with database specific errors categorised as ESqlDbError and
281 other system-wide error codes.
283 @capability The calling application must satisfy the database policy of RSqlSecurityPolicy::ESchemaPolicy type;
285 @see RSqlSecurityPolicy
286 @see RSqlSecurityPolicy::TPolicyType
288 EXPORT_C void RSqlDatabase::CreateL(const TDesC& aDbFileName,
289 const RSqlSecurityPolicy& aSecurityPolicy, const TDesC8* aConfig)
291 __SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8));
292 __SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
293 SQL_TRACE_BORDER(OstTraceExt4(TRACE_BORDER, RSQLDATABASE_CREATEL2_ENTRY, "Entry;0x%X;RSqlDatabase::CreateL;aDbFileName=%S;aSecurityPolicy=0x%X;aConfig=%s", (TUint)this, __SQLPRNSTR(aDbFileName), (TUint)&aSecurityPolicy, __SQLPRNSTR8(config, des16prnbuf)));
294 iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbCreateSecure, aDbFileName, &aSecurityPolicy.Impl(), aConfig);
295 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_CREATEL2_EXIT, "Exit;0x%X;RSqlDatabase::CreateL;iImpl=0x%X", (TUint)this, (TUint)iImpl));
299 Opens an existing database, which can be:
306 @param aDbFileName The name of the file that hosts the database. If this is
307 a secure database, then the format of the name must be:
308 \<drive\>:\<[SID]database file name excluding the path\>.
309 If this is a non-secure database, then aDbFileName has to be the full database file name.
310 "[SID]" refers to SID of the application which created the database.
311 @param aConfig the configuration string "PARAM=VALUE;...."
312 The following parameters can be set using the configuration string:
313 cache_size=value - where "value" is the cache size in pages.
314 "value" must be a positive integer number;
317 @leave KErrNoMemory, an out of memory condition has occurred;
318 KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
319 KErrNotReady, the drive does not exist or is not ready;
320 KErrInUse, the file is already open;
321 KErrNotFound, database file not found;
322 KErrArgument, invalid configuration string, invalid parameter values
323 in the configuration string;
324 KErrGeneral, missing or invalid security policies (if the database to be opened is a secure database);
325 KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
326 KErrNotSupported, incompatible SQL security version (if the database to be opened is a secure database).
327 Note that the function may leave with database specific errors categorised as ESqlDbError and
328 other system-wide error codes.
330 @capability None, if aDbFileName refers to a non-secure database;
331 RSqlSecurityPolicy::ESchemaPolicy or
332 RSqlSecurityPolicy::EReadPolicy or
333 RSqlSecurityPolicy::EWritePolicy database policy type, if aDbFileName refers to a secure database;
335 @see RSqlSecurityPolicy
336 @see RSqlSecurityPolicy::TPolicyType
338 EXPORT_C void RSqlDatabase::OpenL(const TDesC& aDbFileName, const TDesC8* aConfig)
340 __SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8));
341 SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_OPENL_ENTRY, "Entry;0x%X;RSqlDatabase::OpenL;aDbFileName=%S;aConfig=%s", (TUint)this, __SQLPRNSTR(aDbFileName), __SQLPRNSTR(config)));
342 iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbOpen, aDbFileName, NULL, aConfig);
343 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_OPENL_EXIT, "Exit;0x%X;RSqlDatabase::OpenL;iImpl=0x%X", (TUint)this, (TUint)iImpl));
347 Closes this handle to the database.
349 The function frees memory and any allocated resources.
351 You can reuse this object, but you must reinitialise it by calling
352 RSqlDatabase::Create() or RSqlDatabase::Open().
354 @see RSqlDatabase::Create()
355 @see RSqlDatabase::Open()
359 EXPORT_C void RSqlDatabase::Close()
361 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_CLOSE_ENTRY, "Entry;0x%X;RSqlDatabase::Close;iImpl=0x%X", (TUint)this, (TUint)iImpl));
363 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_CLOSE_EXIT, "Exit;0x%X;RSqlDatabase::Close;iImpl=0x%X", (TUint)this, (TUint)iImpl));
368 Attaches an existing database to the current database connection.
370 The attached database can be read, written or modified.
371 One database can be attched multiple times to the same connection, using different logical database names.
372 Tables in an attached database can be referred to using "database-name.table-name" syntax.
373 If an attached table doesn't have a duplicate table name in the main database, it doesn't
374 require a database name prefix.
376 Transactions involving multiple attached databases are atomic.
378 @param aDbFileName The name of the file that hosts the database. If this is
379 a secure database, then the format of the name must be:
380 \<drive\>:\<[SID]database file name excluding the path\>.
381 If this is a private or shared non-secure database, then aDbFileName has to be the full
382 database file name. "[SID]" refers to SID of the application which created the attached database.
383 @param aDbName Logical database name. It must be unique (per database connection). This is the name which can
384 be used for accessing tables in the attached database. The syntax is "database-name.table-name".
386 @return KErrNone, the operation has completed successfully;
387 KErrNoMemory, an out of memory condition has occurred;
388 KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
389 KErrNotReady, the drive does not exist or is not ready;
390 KErrInUse, the file is already open;
391 KErrNotFound, database file not found;
392 KErrGeneral, missing or invalid security policies (if the database to be opened is a secure database);
393 KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
394 KErrNotSupported, incompatible SQL security version (if the database to be opened is a secure database).
395 Note that database specific errors categorised as ESqlDbError, and
396 other system-wide error codes may also be returned.
398 @capability None, if aDbFileName refers to a non-secure database;
399 RSqlSecurityPolicy::ESchemaPolicy or
400 RSqlSecurityPolicy::EReadPolicy or
401 RSqlSecurityPolicy::EWritePolicy database policy type, if aDbFileName refers to a secure database;
403 @see RSqlSecurityPolicy
404 @see RSqlSecurityPolicy::TPolicyType
406 EXPORT_C TInt RSqlDatabase::Attach(const TDesC& aDbFileName, const TDesC& aDbName)
408 SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_ATTACH_ENTRY, "Entry;0x%X;RSqlDatabase::Attach;aDbFileName=%S;aDbName=%S", (TUint)this, __SQLPRNSTR(aDbFileName), __SQLPRNSTR(aDbName)));
409 TInt err = Impl().Attach(aDbFileName, aDbName);
410 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_ATTACH_EXIT, "Entry;0x%X;RSqlDatabase::Attach;err=%d", (TUint)this, err));
415 Detaches previously attached database.
417 @param aDbName Logical database name.
418 The logical name of the database to be detached.
420 @return KErrNone, the operation completed has successfully;
421 KErrNotFound, no attached database with aDbName name;
422 Note that database specific errors categorised as ESqlDbError, and
423 other system-wide error codes may also be returned.
427 EXPORT_C TInt RSqlDatabase::Detach(const TDesC& aDbName)
429 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_DETACH_ENTRY, "Entry;0x%X;RSqlDatabase::Detach;aDbName=%S", (TUint)this, __SQLPRNSTR(aDbName)));
430 TInt err = Impl().Detach(aDbName);
431 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_DETACH_EXIT, "Exit;0x%X;RSqlDatabase::Detach;err=%d", (TUint)this, err));
436 Copies a database file to the specified location.
438 Note that this is a static function, and its use is not
439 restricted to any specific RSqlDatabase instance.
441 @param aSrcDbFileName Source database file name.
442 If this is a secure database, then the format of the name must be:
443 \<drive\>:\<[SID]database file name excluding the path\>.
444 If this is a non-secure database, then aDbFileName has to be the full database file name.
445 "[SID]" refers to SID of the application which created the database.
446 @param aDestDbFileName Destination database file name.
447 If this is a secure database, then the format of the name must be:
448 \<drive\>:\<[SID]database file name excluding the path\>.
449 If this is a non-secure database, then aDbFileName has to be the full database file name.
450 "[SID]" refers to SID of the application which performs the copying operation.
452 The allowed copying operations are:
453 - secure to secure database. Only the application created the database is allowed to copy it.
454 - non-secure to non-secure database. No restrictions apply to this operation.
456 @return KErrNone, the operation completed has successfully;
457 KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
458 KErrNotReady, the drive does not exist or is not ready;
459 KErrInUse, the file is already open;
460 KErrNotFound, database file not found;
461 KErrPermissionDenied, the SID of the calling application does not match the SID of source or destination database.
462 Note that other system-wide error codes may also be returned.
466 Note that if the source database is a secure database, only the application, which created the database, can copy it.
468 EXPORT_C TInt RSqlDatabase::Copy(const TDesC& aSrcDbFileName, const TDesC& aDestDbFileName)
470 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_COPY_ENTRY, "Entry;0;RSqlDatabase::Copy;aSrcDbFileName=%S;aDestDbFileName=%S", __SQLPRNSTR(aSrcDbFileName), __SQLPRNSTR(aDestDbFileName)));
471 TInt err = CSqlDatabaseImpl::Copy(aSrcDbFileName, aDestDbFileName);
472 SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_COPY_EXIT, "Exit;0;RSqlDatabase::Copy;err=%d", err));
477 Deletes the specified database file.
479 Note that this is a static function, and its use is not
480 restricted to any specific RSqlDatabase instance.
482 @param aDbFileName The name of the database file.
483 If this is a secure database, then the format of the name must be:
484 \<drive\>:\<[SID]database file name excluding the path\>.
485 If this is a private or shared non-secure database, then aDbFileName has to be the
486 full database file name. "[SID]" refers to SID of the application which created the database.
488 @return KErrNone, the operation has completed successfully;
489 KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
490 KErrNotReady, the drive does not exist or is not ready;
491 KErrInUse, the database file is in use;
492 KErrNotFound, the database file cannot be found;
493 KErrAccessDenied, access to the database file is denied (e.g. it might be a read-only file);
494 KErrPermissionDenied, the SID of the calling application does not match the SID of the database;
495 Note that other system-wide error codes may also be returned.
499 Note that if the database to be deleted is a secure database, only the application, which created the database, can delete it.
501 EXPORT_C TInt RSqlDatabase::Delete(const TDesC& aDbFileName)
503 SQL_TRACE_BORDER(OstTraceExt1(TRACE_BORDER, RSQLDATABASE_DELETE_ENTRY, "Entry;0;RSqlDatabase::Delete;aDbFileName=%S", __SQLPRNSTR(aDbFileName)));
504 TInt err = CSqlDatabaseImpl::Delete(aDbFileName);
505 SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_DELETE_EXIT, "Exit;0;RSqlDatabase::Delete;err=%d", err));
510 Initializes aSecurityPolicy output parameter with a copy of the database security policies.
511 The caller is responsible for destroying the initialized aSecurityPolicy paramemter.
513 Note that there may be no security policies in force for this database.
515 @param aSecurityPolicy Input/Output parameter, which will be initialized with the database
518 @return KErrNone, the operation has completed successfully;
519 KErrNotSupported, the current database is not a secure database;
520 KErrNoMemory, an out of memory condition has occurred;
524 EXPORT_C TInt RSqlDatabase::GetSecurityPolicy(RSqlSecurityPolicy& aSecurityPolicy) const
526 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_GETSECURITYPOLICY_ENTRY, "Entry;0x%X;RSqlDatabase::GetSecurityPolicy;aSecurityPolicy=0x%X", (TUint)this, (TUint)&aSecurityPolicy));
527 TRAPD(err, CSqlSecurityPolicy* securityPolicy = Impl().CloneSecurityPolicyL(); aSecurityPolicy.Set(*securityPolicy));
528 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_GETSECURITYPOLICY_EXIT, "Exit;0x%X;RSqlDatabase::GetSecurityPolicy;err=%d", (TUint)this, err));
533 Initializes aSecurityPolicy output parameter with a copy of the database security policies.
534 The caller is responsible for destroying the initialized aSecurityPolicy paramemter.
536 Note that there may be no security policies in force for this database.
538 @param aSecurityPolicy Input/Output parameter, which will be initialized with the database
541 @leave KErrNotSupported, the current database is not a secure database;
542 KErrNoMemory, an out of memory condition has occurred;
546 EXPORT_C void RSqlDatabase::GetSecurityPolicyL(RSqlSecurityPolicy& aSecurityPolicy) const
548 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_GETSECURITYPOLICYL_ENTRY, "Entry;0x%X;RSqlDatabase::GetSecurityPolicyL;aSecurityPolicy=0x%X", (TUint)this, (TUint)&aSecurityPolicy));
549 CSqlSecurityPolicy* securityPolicy = Impl().CloneSecurityPolicyL();
550 aSecurityPolicy.Set(*securityPolicy);
551 SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_GETSECURITYPOLICYL_EXIT, "Exit;0x%X;RSqlDatabase::GetSecurityPolicyL", (TUint)this));
555 Sets the transaction isolation level for the database.
557 A transaction isolation level defines the way in which a transaction
558 interacts with other transactions that may be in progress concurrently.
560 Transaction isolation levels are defined by the values of the
561 RSqlDatabase::TIsolationLevel enum.
563 The default isolation level is RSqlDatabase::ESerializable
565 Note that the isolation level is not a persistent property of the database.
566 It is set to the default value, i.e. RSqlDatabase::ESerializable,
567 whenever the database is created or opened.
569 @param aIsolationLevel The isolation level to be set.
571 @return KErrNone, if the operation has completed successfully;
572 KErrNotSupported, invalid (not supported) transaction isolation level;
574 @see RSqlDatabase::TIsolationLevel
578 EXPORT_C TInt RSqlDatabase::SetIsolationLevel(RSqlDatabase::TIsolationLevel aIsolationLevel)
580 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_SETISOLATIONLEVEL_ENTRY, "Entry;0x%X;RSqlDatabase::SetIsolationLevel;aIsolationLevel=%d", (TUint)this, aIsolationLevel));
581 TInt err = Impl().SetIsolationLevel(aIsolationLevel);
582 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_SETISOLATIONLEVEL_EXIT, "Exit;0x%X;RSqlDatabase::SetIsolationLevel;err=%d", (TUint)this, err));
587 Executes one or more 16-bit SQL statements.
589 This method should be used for executing DDL/DML statements, but note the following point:
590 - if an SQL statement contains one or more parameters, then the function will execute it,
591 giving the parameters default NULL values.
593 This class (RSqlDatabase) does not offer functions for setting the parameter values.
594 Use the RSqlStatement class instead.
596 If the call to this function fails because of a database-specific type error
597 (i.e. the error is categorised as of type ESqlDbError), then a textual description of
598 the error can be obtained calling RSqlDatabase::LastErrorMessage().
600 @param aSqlStmt A string of 16-bit wide characters containing one or more DDL/DML SQL statements;
601 each statement is separated by a ';' character.
603 @return >=0, The operation has completed successfully. The number of database rows that were
604 changed/inserted/deleted by the most recently completed DDL/DML sql statement.
605 Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
606 if the operation has completed successfully (disregarding the number of the deleted rows);
607 KErrNoMemory, an out of memory condition has occured;
608 KSqlErrGeneral, a syntax error has occurred - text describing the problem
609 can be obtained by calling RSqlDatabase::LastErrorMessage();
610 KErrDiskFull, There is no available disk space to complete the operation. If the executed statement is a DELETE
611 statement, try to use the reserved disk space (if there is a reserved disk space) to complete the operation.
612 In all other cases the database connection should be closed and some disk space freed before reopening
614 KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
615 Note that database specific errors categorised as ESqlDbError, and
616 other system-wide error codes may also be returned.
618 @capability None, if current RSqlDatabase object represents a handle to a non-secure database;
619 RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema;
620 RSqlSecurityPolicy::EReadPolicy or
621 RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database;
622 RSqlSecurityPolicy::EWritePolicy or
623 RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database;
626 @see TSqlRetCodeClass::ESqlDbError
627 @see RSqlDatabase::LastErrorMessage()
628 @see RSqlSecurityPolicy
629 @see RSqlSecurityPolicy::TPolicyType
631 EXPORT_C TInt RSqlDatabase::Exec(const TDesC& aSqlStmt)
633 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXEC16_ENTRY, "Entry;0x%X;RSqlDatabase::Exec16;aSqlStmt=%S", (TUint)this, __SQLPRNSTR(aSqlStmt)));
634 TInt err = Impl().Exec(aSqlStmt);
635 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXEC16_EXIT, "Exit;0x%X;RSqlDatabase::Exec16;err=%d", (TUint)this, err));
640 Executes one or more 8-bit SQL statements.
642 This method should be used for executing DDL/DML statements, but note the following point:
643 - if an SQL statement contains one or more parameters, then the function will execute it,
644 giving the parameters default NULL values.
646 This class (RSqlDatabase) does not offer functions for setting the parameter values.
647 Use the RSqlStatement class instead.
649 If the call to this function fails because of a database-specific type error
650 (i.e. the error is categorised as ESqlDbError), then a textual description of
651 the error can be obtained calling RSqlDatabase::LastErrorMessage().
653 @param aSqlStmt A string of 8-bit wide characters containing one or more DDL/DML SQL statements;
654 each statement is separated by a ';' character.
656 @return >=0, The operation has completed successfully. The number of database rows that were
657 changed/inserted/deleted by the most recently completed DDL/DML sql statement.
658 Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
659 if the operation has completed successfully (disregarding the number of the deleted rows);
660 KErrNoMemory, an out of memory condition has occured;
661 KSqlErrGeneral, a syntax error has occurred - text describing the problem
662 can be obtained by calling RSqlDatabase::LastErrorMessage();
663 KErrDiskFull, There is no available disk space to complete the operation. If the executed statement is a DELETE
664 statement, try to use the reserved disk space (if there is a reserved disk space) to complete the operation.
665 In all other cases the database connection should be closed and some disk space freed before reopening
667 KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
668 Note that database specific errors categorised as ESqlDbError, and
669 other system-wide error codes may also be returned.
671 @capability None, if current RSqlDatabase object represents a handle to a non-secure database;
672 RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema;
673 RSqlSecurityPolicy::EReadPolicy or
674 RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database;
675 RSqlSecurityPolicy::EWritePolicy or
676 RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database;
679 @see TSqlRetCodeClass::ESqlDbError
680 @see RSqlDatabase::LastErrorMessage()
681 @see RSqlSecurityPolicy
682 @see RSqlSecurityPolicy::TPolicyType
684 EXPORT_C TInt RSqlDatabase::Exec(const TDesC8& aSqlStmt)
686 __SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
687 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXEC8_ENTRY, "Entry;0x%X;RSqlDatabase::Exec8;aSqlStmt=%s", (TUint)this, __SQLPRNSTR8(aSqlStmt, des16prnbuf)));
688 TInt err = Impl().Exec(aSqlStmt);
689 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXEC8_EXIT, "Exit;0x%X;RSqlDatabase::Exec8;err=%d", (TUint)this, err));
694 Executes one or more 16-bit SQL statements asynchronously to allow client to avoid being blocked
697 No other operations can be performed on current RSqlDatabase object and RSqlStatement objects using it
698 until the asynchronous operation completes.
700 This method should be used for executing DDL/DML statements, but note the following point:
701 - if an SQL statement contains one or more parameters, then the function will execute it,
702 giving the parameters default NULL values.
704 This class (RSqlDatabase) does not offer functions for setting the parameter values.
705 Use the RSqlStatement class instead.
707 If the call to this function fails because of a database-specific type error
708 (i.e. the error is categorised as ESqlDbError), then a textual description of
709 the error can be obtained calling RSqlDatabase::LastErrorMessage().
711 @param aSqlStmt A string of 16-bit wide characters containing one or more DDL/DML SQL statements;
712 each statement is separated by a ';' character.
713 @param aStatus Completion status of asynchronous request, one of the following:
714 >=0, The operation has completed successfully. The number of database rows that were
715 changed/inserted/deleted by the most recently completed DDL/DML sql statement.
716 Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
717 if the operation has completed successfully (disregarding the number of the deleted rows);
718 KErrNoMemory, an out of memory condition has occured;
719 KSqlErrGeneral, a syntax error has occurred - text describing the problem
720 can be obtained by calling RSqlDatabase::LastErrorMessage();
721 KErrDiskFull, There is no available disk space to complete the operation. If the executed statement is a DELETE
722 statement, try to use the reserved disk space (if there is a reserved disk space) to complete the operation.
723 In all other cases the database connection should be closed and some disk space freed before reopening
725 KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
726 Note that aStatus may be set with database specific errors categorised as ESqlDbError,
727 and other system-wide error codes.
730 @capability None, if current RSqlDatabase object represents a handle to a non-secure database;
731 RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema;
732 RSqlSecurityPolicy::EReadPolicy or
733 RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database;
734 RSqlSecurityPolicy::EWritePolicy or
735 RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database;
738 @see TSqlRetCodeClass::ESqlDbError
739 @see RSqlDatabase::LastErrorMessage()
740 @see RSqlSecurityPolicy
741 @see RSqlSecurityPolicy::TPolicyType
743 EXPORT_C void RSqlDatabase::Exec(const TDesC& aSqlStmt, TRequestStatus& aStatus)
745 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXECASYNC16_ENTRY, "Entry;0x%X;RSqlDatabase::ExecAsync16;aSqlStmt=%S", (TUint)this, __SQLPRNSTR(aSqlStmt)));
746 Impl().Exec(aSqlStmt, aStatus);
747 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXECASYNC16_EXIT, "Exit;0x%X;RSqlDatabase::ExecAsync16;aStatus.Int()=%d", (TUint)this, aStatus.Int()));
751 Executes one or more 8-bit SQL statements asynchronously to allow client to avoid being blocked
754 No other operations can be performed on current RSqlDatabase object and RSqlStatement objects using it
755 until the asynchronous operation completes.
757 This method should be used for executing DDL/DML statements, but note the following point:
758 - if an SQL statement contains one or more parameters, then the function will execute it,
759 giving the parameters default NULL values.
761 This class (RSqlDatabase) does not offer functions for setting the parameter values.
762 Use the RSqlStatement class instead.
764 If the call to this function fails because of a database-specific type error
765 (i.e. the error is categorised as ESqlDbError), then a textual description of
766 the error can be obtained calling RSqlDatabase::LastErrorMessage().
768 @param aSqlStmt A string of 8-bit wide characters containing one or more DDL/DML SQL statements;
769 each statement is separated by a ';' character.
770 @param aStatus Completion status of asynchronous request, one of the following:
771 >=0, The operation has completed successfully. The number of database rows that were
772 changed/inserted/deleted by the most recently completed DDL/DML sql statement.
773 Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
774 if the operation has completed successfully (disregarding the number of the deleted rows);
775 KErrNoMemory, an out of memory condition has occured;
776 KSqlErrGeneral, a syntax error has occurred - text describing the problem
777 can be obtained by calling RSqlDatabase::LastErrorMessage();
778 KErrDiskFull, There is no available disk space to complete the operation. If the executed statement is a DELETE
779 statement, try to use the reserved disk space (if there is a reserved disk space) to complete the operation.
780 In all other cases the database connection should be closed and some disk space freed before reopening
782 KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
783 Note that aStatus may be set with database specific errors categorised as ESqlDbError,
784 and other system-wide error codes.
787 @capability None, if current RSqlDatabase object represents a handle to a non-secure database;
788 RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema;
789 RSqlSecurityPolicy::EReadPolicy or
790 RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database;
791 RSqlSecurityPolicy::EWritePolicy or
792 RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database;
795 @see TSqlRetCodeClass::ESqlDbError
796 @see RSqlDatabase::LastErrorMessage()
797 @see RSqlSecurityPolicy
798 @see RSqlSecurityPolicy::TPolicyType
800 EXPORT_C void RSqlDatabase::Exec(const TDesC8& aSqlStmt, TRequestStatus& aStatus)
802 __SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
803 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXECASYNC8_ENTRY, "Entry;0x%X;RSqlDatabase::ExecAsync8;aSqlStmt=%s", (TUint)this, __SQLPRNSTR8(aSqlStmt, des16prnbuf)));
804 Impl().Exec(aSqlStmt, aStatus);
805 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXECASYNC8_EXIT, "Exit;0x%X;RSqlDatabase::ExecAsync8;aStatus.Int()=%d", (TUint)this, aStatus.Int()));
809 Retrieves a reference to the textual description of the error returned by the
810 most recent call to any of the functions:
811 - RSqlDatabase::Exec()
812 - RSqlStatement::Exec()
813 - RSqlStatement::Next()
814 - RSqlStatement::Reset()
816 Note that the function can only return a reference to text for
817 database-specific type errors, i.e. those errors that are categorised as of
820 @return A non-modifiable pointer descriptor representing the most recent error
821 message. Note that message may be NULL, i.e. the descriptor may have
824 @see TSqlRetCodeClass::ESqlDbError
825 @see RSqlDatabase::Exec()
826 @see RSqlStatement::Exec()
827 @see RSqlStatement::Next()
828 @see RSqlStatement::Reset()
832 EXPORT_C TPtrC RSqlDatabase::LastErrorMessage() const
834 TPtrC msg(Impl().LastErrorMessage());
835 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_LASTERRORMESSAGE, "0x%X;RSqlDatabase::LastErrorMessage;msg=%S", (TUint)this, __SQLPRNSTR(msg)));
840 Returns the ROWID of the most recent successful INSERT into the database
841 from this database connection.
843 @return >0, the ROWID of the most recent successful INSERT into the database
844 from this database connection;
845 0, if no successful INSERTs have ever occurred from this database connection
846 <0, if one of the system-wide error codes is returned
850 EXPORT_C TInt64 RSqlDatabase::LastInsertedRowId() const
852 SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_LASTINSERTEDROWID_ENTRY, "Entry;0x%X;RSqlDatabase::LastInsertedRowId", (TUint)this));
853 TInt64 rc = Impl().LastInsertedRowId();
854 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_LASTINSERTEDROWID_EXIT, "Exit;0x%X;RSqlDatabase::LastInsertedRowId;RowId=%lld", (TUint)this, rc));
859 Checks the database transaction state.
861 @return True, if the database is in transaction, false otherwise.
865 EXPORT_C TBool RSqlDatabase::InTransaction() const
867 SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_INTRABSACTION_ENTRY, "Entry;0x%X;RSqlDatabase::InTransaction", (TUint)this));
868 TBool res = Impl().InTransaction();
869 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_INTRABSACTION_EXIT, "Exit;0x%X;RSqlDatabase::InTransaction;res=%d", (TUint)this, res));
874 Returns the database file size, in bytes.
876 @return >= 0, the operation has completed successfully. The number is the size of the main
878 KErrNoMemory, an out of memory condition has occurred;
879 KErrTooBig, the database is too big and the size cannot fit into 32-bit signed integer;
880 Note that database specific errors categorised as ESqlDbError, and
881 other system-wide error codes may also be returned.
885 EXPORT_C TInt RSqlDatabase::Size() const
887 SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_SIZE_ENTRY, "Entry;0x%X;RSqlDatabase::Size", (TUint)this));
888 TInt rc = Impl().Size();
889 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_SIZE_EXIT, "Exit;0x%X;RSqlDatabase::Size;rc=%d", (TUint)this, rc));
894 Returns the database file size and free space, in bytes.
896 @param aSize An output parameter. If the call was successfull the aSize object will contain information
897 about the database size and database free space.
898 @param aDbName The attached database name or KNullDesC for the main database
900 @return KErrNone, The operation has completed succesfully;
901 KErrBadName, Invalid (too long) attached database name;
902 KSqlErrGeneral, There is no an attached database with aDbName name;
903 Note that database specific errors categorised as ESqlDbError, and
904 other system-wide error codes may also be returned.
908 EXPORT_C TInt RSqlDatabase::Size(RSqlDatabase::TSize& aSize, const TDesC& aDbName) const
910 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_SIZE2_ENTRY, "Entry;0x%X;RSqlDatabase::Size-2;aDbName=%S", (TUint)this, __SQLPRNSTR(aDbName)));
911 TInt err = Impl().Size(aSize, aDbName);
912 SQL_TRACE_BORDER(OstTraceExt4(TRACE_BORDER, RSQLDATABASE_SIZE2_EXIT, "Exit;0x%X;RSqlDatabase::Size-2;err=%d;aSize.iSize=%lld;aSize.iFree=%lld", (TUint)this, err, aSize.iSize, aSize.iFree));
917 Compacts the database.
918 This function should be used for databases that have been configured for a manual compaction during
919 the database creation.
920 The function has no effect if the database has been configured for an auto compaction.
921 The function has no effect if the aSize argument value is zero.
922 The function has no effect also if there aren't any free pages in the database file.
923 If the database has been configured for a background compaction, then the function works as if the database
924 has been configured for a manual compaction.
926 @param aSize Can be one of:
927 RSqlDatabase::EMaxCompaction - requests a full database compaction. All free pages
928 (if any exists) will be removed;
929 Positive 32-bit signed integer value - the server will attempt to compact the database removing
930 at most aSize bytes from the database file, rounded up to the nearest page count,
931 e.g. request for removing 1 byte will remove one free page from the database;
933 @param aDbName The attached database name or KNullDesC for the main database
935 @return Zero or positive integer - the operation has completed succesfully, the return value is the
936 size of the removed free space in bytes,
937 KErrArgument, Invalid aSize value;
938 KErrBadName, Invalid (too long) attached database name;
939 KSqlErrReadOnly, Read-only database;
940 KSqlErrGeneral, There is no an attached database with aDbName name;
941 Note that database specific errors categorised as ESqlDbError, and
942 other system-wide error codes may also be returned.
946 EXPORT_C TInt RSqlDatabase::Compact(TInt64 aSize, const TDesC& aDbName)
948 SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_COMPACT_ENTRY, "Entry;0x%X;RSqlDatabase::Compact;aSize=%lld;aDbName=%S", (TUint)this, aSize, __SQLPRNSTR(aDbName)));
949 TInt rc = Impl().Compact(aSize, aDbName);
950 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_COMPACT_EXIT, "Exit;0x%X;RSqlDatabase::Compact;rc=%d", (TUint)this, rc));
955 Compacts the database asynchronously.
956 This function should be used for databases that have been configured for a manual compaction during
957 the database creation.
958 The function has no effect if the database has been configured for an auto compaction.
959 The function has no effect if the aSize argument value is zero.
960 The function has no effect also if there aren't any free pages in the database file.
961 If the database has been configured for a background compaction, then the function works as if the database
962 has been configured for a manual compaction.
964 @param aStatus Completion status of asynchronous request, one of the following:
965 Zero or positive integer - the operation has completed succesfully, the return value is the
966 size of the removed free space in bytes,
967 KErrArgument, Invalid aSize value;
968 KErrBadName, Invalid (too long) attached database name;
969 KSqlErrReadOnly, Read-only database;
970 KSqlErrGeneral, There is no an attached database with aDbName name;
971 Note that database specific errors categorised as ESqlDbError, and
972 other system-wide error codes may also be returned.
975 @param aSize Can be one of:
976 RSqlDatabase::EMaxCompaction - requests a full database compaction. All free pages
977 (if any exists) will be removed;
978 Positive 32-bit signed integer value - the server will attempt to compact the database removing
979 at most aSize bytes from the database file, rounded up to the nearest page count,
980 e.g. request for removing 1 byte will remove one free page from the database;
982 @param aDbName The attached database name or KNullDesC for the main database
986 EXPORT_C void RSqlDatabase::Compact(TInt64 aSize, TRequestStatus& aStatus, const TDesC& aDbName)
988 SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_COMPACTASYNC_ENTRY, "Entry;0x%X;RSqlDatabase::CompactAsync;aSize=%lld;aDbName=%S", (TUint)this, aSize, __SQLPRNSTR(aDbName)));
989 Impl().Compact(aSize, aDbName, aStatus);
990 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_COMPACTASYNC_EXIT, "Exit;0x%X;RSqlDatabase::CompactAsync;aStatus.Int()=%d", (TUint)this, aStatus.Int()));
994 Reserves a predefined amount of disk space on the drive where the database file is.
996 At the moment the max possible amount, allowed by the file server, is reserved on the database file drive.
997 Use this call to ensure that if your "delete records" transaction fails because of "out of
998 disk space" circumstances, you can get an access to the already reserved disk space and
999 complete your transaction successfully the second time.
1001 There is no strong, 100% guarantee, that the reserved disk space will always help the client
1002 in "low memory" situations.
1004 @param aSpace This parameter is not used at the moment.
1006 @return KErrNone, The operation has completed succesfully;
1007 KErrNoMemory, Out of memory condition has occured;
1008 KErrAlreadyExists, The space has already been reserved;
1009 Note that other system-wide error codes may also be returned.
1011 @see RSqlDatabase::FreeReservedSpace()
1012 @see RSqlDatabase::GetReserveAccess()
1013 @see RSqlDatabase::ReleaseReserveAccess()
1015 EXPORT_C TInt RSqlDatabase::ReserveDriveSpace(TInt aSize)
1017 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_RESERVEDRIVESPACE_ENTRY, "Entry;0x%X;RSqlDatabase::ReserveDriveSpace;aSize=%d", (TUint)this, aSize));
1018 //Usage of the IPC call arguments:
1019 //Arg 0: [out] requested size
1020 TInt err = Impl().Session().SendReceive(ESqlSrvDbReserveDriveSpace, TIpcArgs(aSize));
1021 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_RESERVEDRIVESPACE_EXIT, "Exit;0x%X;RSqlDatabase::ReserveDriveSpace;err=%d", (TUint)this, err));
1026 Frees the reserved disk space.
1028 @see RSqlDatabase::ReserveDriveSpace()
1029 @see RSqlDatabase::GetReserveAccess()
1030 @see RSqlDatabase::ReleaseReserveAccess()
1032 EXPORT_C void RSqlDatabase::FreeReservedSpace()
1034 SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_FREERESERVEDSPACE_ENTRY, "Entry;0x%X;RSqlDatabase::FreeReservedSpace", (TUint)this));
1035 __SQLTRACE_BORDERVAR(TInt err =) Impl().Session().SendReceive(ESqlSrvDbFreeReservedSpace);
1036 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_FREERESERVEDSPACE_EXIT, "Exit;0x%X;RSqlDatabase::FreeReservedSpace;err=%d", (TUint)this, err));
1040 Gives the client an access to the already reserved disk space.
1042 @return KErrNone, The operation has completed succesfully;
1043 KErrNotFound, An attempt is made to get an access to a disk space, which is not reserved yet;
1044 KErrInUse, An access to the reserved space has already been given;
1045 Note that other system-wide error codes may also be returned.
1047 @see RSqlDatabase::ReserveDriveSpace()
1048 @see RSqlDatabase::FreeReservedSpace()
1049 @see RSqlDatabase::ReleaseReserveAccess()
1051 EXPORT_C TInt RSqlDatabase::GetReserveAccess()
1053 SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_GETRESERVEACCESS_ENTRY, "Exit;0x%X;RSqlDatabase::GetReserveAccess", (TUint)this));
1054 TInt err = Impl().Session().SendReceive(ESqlSrvDbGetReserveAccess);
1055 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_GETRESERVEACCESS_EXIT, "Exit;0x%X;RSqlDatabase::GetReserveAccess;err=%d", (TUint)this, err));
1060 Releases the access to the reserved disk space.
1062 @see RSqlDatabase::ReserveDriveSpace()
1063 @see RSqlDatabase::FreeReservedSpace()
1064 @see RSqlDatabase::GetReserveAccess()
1066 EXPORT_C void RSqlDatabase::ReleaseReserveAccess()
1068 SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_RELEASERESERVEACCESS_ENTRY, "Entry;0x%X;RSqlDatabase::ReleaseReserveAccess", (TUint)this));
1069 __SQLTRACE_BORDERVAR(TInt err =) Impl().Session().SendReceive(ESqlSrvDbReleaseReserveAccess);
1070 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_RELEASERESERVEACCESS_EXIT, "Exit;0x%X;RSqlDatabase::ReleaseReserveAccess;err=%d", (TUint)this, err));
1074 Returns a reference to the implementation object of RSqlDatabase - CSqlDatabaseImpl.
1076 @panic SqlDb 2 Create() or Open() has not previously been called on this RSqlDatabase object.
1080 CSqlDatabaseImpl& RSqlDatabase::Impl() const
1082 __ASSERT_ALWAYS(iImpl != NULL, __SQLPANIC(ESqlPanicInvalidObj));