os/persistentdata/persistentstorage/sql/SRC/Client/SQLDatabase.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    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"
    21 #endif
    22 #include "SqlTraceDef.h"
    23 
    24 /**
    25 Gets the category of the return code value that is returned by
    26 a call to the SQL API.
    27 
    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. 
    31 
    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.
    35 
    36 @param aSqlRetCode The return code value returned from a call to any (member)
    37                    function that forms part of the SQL interface.
    38 
    39 @return The category associated with the specified return code value. This is
    40         one of the TSqlRetCodeClass enum values.
    41 
    42 @see TSqlRetCodeClass
    43 
    44 @capability None
    45 
    46 @publishedAll
    47 @released
    48 */
    49 EXPORT_C TSqlRetCodeClass SqlRetCodeClass(TInt aSqlRetCode)
    50 	{
    51 	if(aSqlRetCode >= 0)
    52 		{
    53 		return ESqlInformation;	
    54 		}
    55 	else if(aSqlRetCode <= KSqlErrGeneral)
    56 		{
    57 		return ESqlDbError;	
    58 		}
    59 	return ESqlOsError;
    60 	}
    61 
    62 /**
    63 Initialises the pointer to the implementation object to NULL.
    64 
    65 @capability None
    66 */
    67 EXPORT_C RSqlDatabase::RSqlDatabase() :
    68 	iImpl(NULL)
    69 	{
    70 	}
    71 	
    72 /**
    73 Creates a new shared non-secure or private secure database.
    74 
    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".
    87 
    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.
    98 
    99 @capability None
   100 */
   101 EXPORT_C TInt RSqlDatabase::Create(const TDesC& aDbFileName, const TDesC8* aConfig)
   102 	{
   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));
   108 	return err;
   109 	}
   110 	
   111 /**
   112 Creates a new shared secure database.
   113 
   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".
   129 			   
   130 
   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.
   144 
   145 @capability The calling application must satisfy the database policy of RSqlSecurityPolicy::ESchemaPolicy type;
   146 
   147 @see RSqlSecurityPolicy
   148 @see RSqlSecurityPolicy::TPolicyType
   149 */
   150 EXPORT_C TInt RSqlDatabase::Create(const TDesC& aDbFileName,
   151 						const RSqlSecurityPolicy& aSecurityPolicy, const TDesC8* aConfig)
   152 	{
   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));
   158 	return err;
   159 	}
   160 	
   161 /**
   162 Opens an existing database, which can be:
   163 @code
   164  - shared non-secure;
   165  - shared secure;
   166  - private secure;
   167 @endcode
   168 
   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;
   178 			   
   179 
   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.
   193 
   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;
   198 
   199 @see RSqlSecurityPolicy
   200 @see RSqlSecurityPolicy::TPolicyType
   201 */
   202 EXPORT_C TInt RSqlDatabase::Open(const TDesC& aDbFileName, const TDesC8* aConfig)
   203 	{
   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));
   209 	return err;
   210 	}
   211 
   212 /**
   213 Creates a new shared non-secure or private secure database.
   214  
   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".
   227 			   
   228 
   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.
   239 
   240 @capability None
   241 */
   242 EXPORT_C void RSqlDatabase::CreateL(const TDesC& aDbFileName, const TDesC8* aConfig)
   243 	{
   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));
   249 	}
   250 	
   251 /**
   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";
   266 			   
   267 			   compaction=value - where "value" is the desired compaction mode. 
   268                   				  "value" could be either "background", "synchronous" or "manual".
   269                   				  
   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.
   282 
   283 @capability The calling application must satisfy the database policy of RSqlSecurityPolicy::ESchemaPolicy type;
   284 
   285 @see RSqlSecurityPolicy
   286 @see RSqlSecurityPolicy::TPolicyType
   287 */
   288 EXPORT_C void RSqlDatabase::CreateL(const TDesC& aDbFileName,
   289 				const RSqlSecurityPolicy& aSecurityPolicy, const TDesC8* aConfig)
   290 	{
   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));
   296 	}
   297 	
   298 /**
   299 Opens an existing database, which can be:
   300 @code
   301  - shared non-secure;
   302  - shared secure;
   303  - private secure;
   304 @endcode
   305 
   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;
   315 			   
   316 
   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.
   329 
   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;
   334 
   335 @see RSqlSecurityPolicy
   336 @see RSqlSecurityPolicy::TPolicyType
   337 */
   338 EXPORT_C void RSqlDatabase::OpenL(const TDesC& aDbFileName, const TDesC8* aConfig)
   339 	{
   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));
   344 	}
   345 
   346 /**
   347 Closes this handle to the database.
   348 
   349 The function frees memory and any allocated resources.
   350 
   351 You can reuse this object, but you must reinitialise it by calling
   352 RSqlDatabase::Create() or RSqlDatabase::Open().
   353 
   354 @see RSqlDatabase::Create()
   355 @see RSqlDatabase::Open()
   356 
   357 @capability None
   358 */
   359 EXPORT_C void RSqlDatabase::Close()
   360 	{
   361     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_CLOSE_ENTRY, "Entry;0x%X;RSqlDatabase::Close;iImpl=0x%X", (TUint)this, (TUint)iImpl));
   362 	delete iImpl;
   363     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_CLOSE_EXIT, "Exit;0x%X;RSqlDatabase::Close;iImpl=0x%X", (TUint)this, (TUint)iImpl));
   364 	iImpl = NULL;
   365 	}
   366 	
   367 /**
   368 Attaches an existing database to the current database connection.
   369 
   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. 
   375 
   376 Transactions involving multiple attached databases are atomic.
   377 
   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".
   385 
   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.
   397 
   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;
   402 
   403 @see RSqlSecurityPolicy
   404 @see RSqlSecurityPolicy::TPolicyType
   405 */
   406 EXPORT_C TInt RSqlDatabase::Attach(const TDesC& aDbFileName, const TDesC& aDbName)
   407 	{
   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));
   411 	return err;
   412 	}
   413 		
   414 /**
   415 Detaches previously attached database.
   416 
   417 @param aDbName Logical database name. 
   418 			   The logical name of the database to be detached.
   419 
   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.
   424 
   425 @capability None
   426 */
   427 EXPORT_C TInt RSqlDatabase::Detach(const TDesC& aDbName)
   428 	{
   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));
   432 	return err;
   433 	}
   434 
   435 /**
   436 Copies a database file to the specified location.
   437 
   438 Note that this is a static function, and its use is not
   439 restricted to any specific RSqlDatabase instance.
   440 
   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.
   451 
   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.
   455 
   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.
   463 
   464 @capability None
   465 
   466 Note that if the source database is a secure database, only the application, which created the database, can copy it.
   467 */
   468 EXPORT_C TInt RSqlDatabase::Copy(const TDesC& aSrcDbFileName, const TDesC& aDestDbFileName)
   469 	{
   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));
   473 	return err;
   474 	}
   475 	
   476 /**
   477 Deletes the specified database file.
   478 
   479 Note that this is a static function, and its use is not
   480 restricted to any specific RSqlDatabase instance.
   481 
   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.
   487 
   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.
   496 
   497 @capability None
   498 
   499 Note that if the database to be deleted is a secure database, only the application, which created the database, can delete it.
   500 */
   501 EXPORT_C TInt RSqlDatabase::Delete(const TDesC& aDbFileName)
   502 	{
   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));
   506 	return err;
   507 	}
   508 	
   509 /**
   510 Initializes aSecurityPolicy output parameter with a copy of the database security policies.
   511 The caller is responsible for destroying the initialized aSecurityPolicy paramemter.
   512 
   513 Note that there may be no security policies in force for this database.
   514 
   515 @param aSecurityPolicy Input/Output parameter, which will be initialized with the database
   516 						 security policies.
   517 
   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;
   521 
   522 @capability None
   523 */
   524 EXPORT_C TInt RSqlDatabase::GetSecurityPolicy(RSqlSecurityPolicy& aSecurityPolicy) const
   525 	{
   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));
   529 	return err;
   530 	}
   531 	
   532 /**
   533 Initializes aSecurityPolicy output parameter with a copy of the database security policies.
   534 The caller is responsible for destroying the initialized aSecurityPolicy paramemter.
   535 
   536 Note that there may be no security policies in force for this database.
   537 
   538 @param aSecurityPolicy Input/Output parameter, which will be initialized with the database
   539 						 security policies.
   540 
   541 @leave  KErrNotSupported, the current database is not a secure database;
   542         KErrNoMemory, an out of memory condition has occurred;
   543 
   544 @capability None
   545 */
   546 EXPORT_C void RSqlDatabase::GetSecurityPolicyL(RSqlSecurityPolicy& aSecurityPolicy) const
   547 	{
   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));
   552 	}
   553 	
   554 /**
   555 Sets the transaction isolation level for the database.
   556 
   557 A transaction isolation level defines the way in which a transaction
   558 interacts with other transactions that may be in progress concurrently.
   559 
   560 Transaction isolation levels are defined by the values of the
   561 RSqlDatabase::TIsolationLevel enum.
   562 
   563 The default isolation level is RSqlDatabase::ESerializable
   564 
   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.
   568 
   569 @param aIsolationLevel The isolation level to be set.
   570 
   571 @return KErrNone, if the operation has completed successfully;
   572 		KErrNotSupported, invalid (not supported) transaction isolation level;
   573 
   574 @see RSqlDatabase::TIsolationLevel
   575 
   576 @capability None
   577 */
   578 EXPORT_C TInt RSqlDatabase::SetIsolationLevel(RSqlDatabase::TIsolationLevel aIsolationLevel)
   579 	{
   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));
   583 	return err;
   584 	}
   585 	
   586 /**
   587 Executes one or more 16-bit SQL statements.
   588 
   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.
   592 
   593 This class (RSqlDatabase) does not offer functions for setting the parameter values. 
   594 Use the RSqlStatement class instead.
   595 
   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().
   599 
   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.
   602 
   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 
   613         			  the database; 
   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.
   617 
   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;
   624 
   625 @see RSqlStatement
   626 @see TSqlRetCodeClass::ESqlDbError
   627 @see RSqlDatabase::LastErrorMessage()
   628 @see RSqlSecurityPolicy
   629 @see RSqlSecurityPolicy::TPolicyType
   630 */
   631 EXPORT_C TInt RSqlDatabase::Exec(const TDesC& aSqlStmt)
   632 	{
   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));
   636     return err;
   637 	}
   638 	
   639 /**
   640 Executes one or more 8-bit SQL statements.
   641 
   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.
   645 
   646 This class (RSqlDatabase) does not offer functions for setting the parameter values. 
   647 Use the RSqlStatement class instead.
   648 
   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().
   652 
   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.
   655 
   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 
   666         			  the database; 
   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.
   670 
   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;
   677 
   678 @see RSqlStatement
   679 @see TSqlRetCodeClass::ESqlDbError
   680 @see RSqlDatabase::LastErrorMessage()
   681 @see RSqlSecurityPolicy
   682 @see RSqlSecurityPolicy::TPolicyType
   683 */
   684 EXPORT_C TInt RSqlDatabase::Exec(const TDesC8& aSqlStmt)
   685 	{
   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));
   690 	return err;
   691 	}
   692 
   693 /**
   694 Executes one or more 16-bit SQL statements asynchronously to allow client to avoid being blocked 
   695 by server activity.
   696 
   697 No other operations can be performed on current RSqlDatabase object and RSqlStatement objects using it
   698 until the asynchronous operation completes.
   699 
   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.
   703 
   704 This class (RSqlDatabase) does not offer functions for setting the parameter values. 
   705 Use the RSqlStatement class instead.
   706 
   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().
   710 
   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 
   724         			  the database; 
   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.
   728 
   729 
   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;
   736 
   737 @see RSqlStatement
   738 @see TSqlRetCodeClass::ESqlDbError
   739 @see RSqlDatabase::LastErrorMessage()
   740 @see RSqlSecurityPolicy
   741 @see RSqlSecurityPolicy::TPolicyType
   742 */
   743 EXPORT_C void RSqlDatabase::Exec(const TDesC& aSqlStmt, TRequestStatus& aStatus)
   744 	{
   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()));
   748 	}
   749 
   750 /**
   751 Executes one or more 8-bit SQL statements asynchronously to allow client to avoid being blocked 
   752 by server activity.
   753 
   754 No other operations can be performed on current RSqlDatabase object and RSqlStatement objects using it
   755 until the asynchronous operation completes.
   756 
   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.
   760 
   761 This class (RSqlDatabase) does not offer functions for setting the parameter values. 
   762 Use the RSqlStatement class instead.
   763 
   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().
   767 
   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 
   781         			  the database; 
   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.
   785 
   786 
   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;
   793 
   794 @see RSqlStatement
   795 @see TSqlRetCodeClass::ESqlDbError
   796 @see RSqlDatabase::LastErrorMessage()
   797 @see RSqlSecurityPolicy
   798 @see RSqlSecurityPolicy::TPolicyType
   799 */
   800 EXPORT_C void RSqlDatabase::Exec(const TDesC8& aSqlStmt, TRequestStatus& aStatus)
   801 	{
   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()));
   806 	}
   807 	
   808 /**
   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()
   815 
   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
   818 type ESqlDbError.
   819 
   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
   822         zero length.
   823  
   824 @see TSqlRetCodeClass::ESqlDbError
   825 @see RSqlDatabase::Exec()
   826 @see RSqlStatement::Exec()
   827 @see RSqlStatement::Next()
   828 @see RSqlStatement::Reset()
   829 
   830 @capability None
   831 */
   832 EXPORT_C TPtrC RSqlDatabase::LastErrorMessage() const
   833 	{
   834 	TPtrC msg(Impl().LastErrorMessage());
   835     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_LASTERRORMESSAGE, "0x%X;RSqlDatabase::LastErrorMessage;msg=%S", (TUint)this, __SQLPRNSTR(msg)));
   836 	return msg;
   837 	}
   838 
   839 /**
   840 Returns the ROWID of the most recent successful INSERT into the database 
   841 from this database connection.
   842 
   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
   847 
   848 @capability None
   849 */
   850 EXPORT_C TInt64 RSqlDatabase::LastInsertedRowId() const
   851 	{
   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));
   855 	return rc;
   856 	}
   857 
   858 /**
   859 Checks the database transaction state.
   860 
   861 @return True, if the database is in transaction, false otherwise.
   862 
   863 @capability None
   864 */
   865 EXPORT_C TBool RSqlDatabase::InTransaction() const
   866 	{
   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));
   870 	return res;
   871 	}
   872 	
   873 /**
   874 Returns the database file size, in bytes.
   875 
   876 @return >= 0, 		  the operation has completed successfully. The number is the size of the main
   877 					  database file;
   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.
   882 
   883 @capability None
   884 */
   885 EXPORT_C TInt RSqlDatabase::Size() const
   886 	{
   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));
   890 	return rc;
   891 	}
   892 
   893 /**
   894 Returns the database file size and free space, in bytes.
   895 
   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
   899 
   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.
   905                   
   906 @capability None
   907 */
   908 EXPORT_C TInt RSqlDatabase::Size(RSqlDatabase::TSize& aSize, const TDesC& aDbName) const
   909 	{
   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));
   913 	return err;
   914 	}
   915 
   916 /**
   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.
   925 
   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;
   932 
   933 @param aDbName The attached database name or KNullDesC for the main database
   934 
   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.
   943                   
   944 @capability None
   945 */
   946 EXPORT_C TInt RSqlDatabase::Compact(TInt64 aSize, const TDesC& aDbName)
   947 	{
   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));
   951 	return rc;
   952 	}
   953 	
   954 /**
   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.
   963 
   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.
   973 
   974 
   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;
   981 
   982 @param aDbName The attached database name or KNullDesC for the main database
   983                   
   984 @capability None
   985 */
   986 EXPORT_C void RSqlDatabase::Compact(TInt64 aSize, TRequestStatus& aStatus, const TDesC& aDbName)
   987 	{
   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()));
   991 	}
   992 
   993 /**
   994 Reserves a predefined amount of disk space on the drive where the database file is.
   995 
   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.
  1000 
  1001 There is no strong, 100% guarantee, that the reserved disk space will always help the client
  1002 in "low memory" situations.
  1003 
  1004 @param aSpace This parameter is not used at the moment.
  1005 
  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.
  1010 
  1011 @see RSqlDatabase::FreeReservedSpace()
  1012 @see RSqlDatabase::GetReserveAccess()
  1013 @see RSqlDatabase::ReleaseReserveAccess()
  1014 */
  1015 EXPORT_C TInt RSqlDatabase::ReserveDriveSpace(TInt aSize)
  1016 	{
  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));
  1022     return err;
  1023 	}
  1024 	
  1025 /**
  1026 Frees the reserved disk space.
  1027 
  1028 @see RSqlDatabase::ReserveDriveSpace()
  1029 @see RSqlDatabase::GetReserveAccess()
  1030 @see RSqlDatabase::ReleaseReserveAccess()
  1031 */
  1032 EXPORT_C void RSqlDatabase::FreeReservedSpace()
  1033 	{
  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));
  1037 	}
  1038 	
  1039 /**
  1040 Gives the client an access to the already reserved disk space.
  1041 
  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.
  1046 
  1047 @see RSqlDatabase::ReserveDriveSpace()
  1048 @see RSqlDatabase::FreeReservedSpace()
  1049 @see RSqlDatabase::ReleaseReserveAccess()
  1050 */
  1051 EXPORT_C TInt RSqlDatabase::GetReserveAccess()
  1052 	{
  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));
  1056 	return err;
  1057 	}
  1058 	
  1059 /**
  1060 Releases the access to the reserved disk space.
  1061 
  1062 @see RSqlDatabase::ReserveDriveSpace()
  1063 @see RSqlDatabase::FreeReservedSpace()
  1064 @see RSqlDatabase::GetReserveAccess()
  1065 */
  1066 EXPORT_C void RSqlDatabase::ReleaseReserveAccess()
  1067 	{
  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));
  1071 	}
  1072 
  1073 /**
  1074 Returns a reference to the implementation object of RSqlDatabase - CSqlDatabaseImpl.
  1075 
  1076 @panic SqlDb 2 Create() or Open() has not previously been called on this RSqlDatabase object.
  1077 
  1078 @internalComponent
  1079 */
  1080 CSqlDatabaseImpl& RSqlDatabase::Impl() const
  1081 	{
  1082 	__ASSERT_ALWAYS(iImpl != NULL, __SQLPANIC(ESqlPanicInvalidObj));
  1083 	return *iImpl;	
  1084 	}