sl@0: // Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include "SqlAssert.h" //ESqlPanicInvalidObj, ESqlPanicObjExists sl@0: #include "SqlDatabaseImpl.h" //CSqlDatabaseImpl sl@0: #include "OstTraceDefinitions.h" sl@0: #ifdef OST_TRACE_COMPILER_IN_USE sl@0: #include "SqlDatabaseTraces.h" sl@0: #endif sl@0: #include "SqlTraceDef.h" sl@0: sl@0: /** sl@0: Gets the category of the return code value that is returned by sl@0: a call to the SQL API. sl@0: sl@0: A call to the SQL API may complete with a non-zero return code indicating that some sl@0: unexpected behaviour has occurred. This can be categorised in a number of ways, sl@0: for example, as a Symbian OS error, or as a database error etc etc. sl@0: sl@0: This function takes the return code value and gets the category associated with sl@0: that value. The categories are defined by the enum values of sl@0: the TSqlRetCodeClass enum. sl@0: sl@0: @param aSqlRetCode The return code value returned from a call to any (member) sl@0: function that forms part of the SQL interface. sl@0: sl@0: @return The category associated with the specified return code value. This is sl@0: one of the TSqlRetCodeClass enum values. sl@0: sl@0: @see TSqlRetCodeClass sl@0: sl@0: @capability None sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: EXPORT_C TSqlRetCodeClass SqlRetCodeClass(TInt aSqlRetCode) sl@0: { sl@0: if(aSqlRetCode >= 0) sl@0: { sl@0: return ESqlInformation; sl@0: } sl@0: else if(aSqlRetCode <= KSqlErrGeneral) sl@0: { sl@0: return ESqlDbError; sl@0: } sl@0: return ESqlOsError; sl@0: } sl@0: sl@0: /** sl@0: Initialises the pointer to the implementation object to NULL. sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C RSqlDatabase::RSqlDatabase() : sl@0: iImpl(NULL) sl@0: { sl@0: } sl@0: sl@0: /** sl@0: Creates a new shared non-secure or private secure database. sl@0: sl@0: @param aDbFileName The full path name of the file that is to host the database. sl@0: @param aConfig the configuration string "PARAM=VALUE;....". sl@0: The following parameters can be set using the configuration string: sl@0: cache_size=value - where "value" is the cache size in pages. sl@0: "value" must be a positive integer number; sl@0: page_size=value - where "value" is the page size in bytes. sl@0: The "page_size" parameter can accept the following values: sl@0: 512, 1024, 2048, 4096, 8192, 16384, 32768; sl@0: encoding=value - where "value" is the desired database encoding. sl@0: "value" could be either "UTF-8" or "UTF-16"; sl@0: compaction=value - where "value" is the desired compaction mode. sl@0: "value" could be either "background", "synchronous" or "manual". sl@0: sl@0: @return KErrNone, the operation has completed successfully; sl@0: KErrNoMemory, an out of memory condition has occurred; sl@0: KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory; sl@0: KErrAlreadyExists, the file already exists; sl@0: KErrNotReady, the drive does not exist or is not ready; sl@0: KErrInUse, the file is already open; sl@0: KErrArgument, the file name refers to a secure database, invalid configuration string, invalid parameter values sl@0: in the configuration string. sl@0: Note that database specific errors categorised as ESqlDbError, and sl@0: other system-wide error codes may also be returned. sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::Create(const TDesC& aDbFileName, const TDesC8* aConfig) sl@0: { sl@0: __SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8)); sl@0: __SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf); sl@0: 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))); sl@0: TRAPD(err, iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbCreate, aDbFileName, NULL, aConfig)); sl@0: SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_CREATE_Exit, "Exit;0x%X;RSqlDatabase::Create;iImpl=0x%X;err=%d", (TUint)this, (TUint)iImpl, err)); sl@0: return err; sl@0: } sl@0: sl@0: /** sl@0: Creates a new shared secure database. sl@0: sl@0: @param aDbFileName The name of the file that is to host the database. sl@0: The format of the name is \:\<[SID]database file name excluding the path\>. sl@0: "[SID]" refers to the application SID. sl@0: @param aSecurityPolicy The container for the security policies. sl@0: @param aConfig the configuration string "PARAM=VALUE;...." sl@0: The following parameters can be set using the configuration string: sl@0: cache_size=value - where "value" is the cache size in pages. sl@0: "value" must be a positive integer number; sl@0: page_size=value - where "value" is the page size in bytes. sl@0: The "page_size" parameter can accept the following values: sl@0: 512, 1024, 2048, 4096, 8192, 16384, 32768; sl@0: encoding=value - where "value" is the desired database encoding. sl@0: "value" could be either "UTF-8" or "UTF-16"; sl@0: compaction=value - where "value" is the desired compaction mode. sl@0: "value" could be either "background", "synchronous" or "manual". sl@0: sl@0: sl@0: @return KErrNone, the operation has completed successfully; sl@0: KErrNoMemory, an out of memory condition has occurred; sl@0: KErrArgument, the file name does not refer to a secure database; sl@0: KErrArgument, system table name found in the security policies (aSecurityPolicy), sl@0: invalid configuration string, invalid parameter values sl@0: in the configuration string; sl@0: KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory; sl@0: KErrAlreadyExists, the file already exists; sl@0: KErrNotReady, the drive does not exist or is not ready; sl@0: KErrInUse, the file is already open; sl@0: KErrPermissionDenied, the caller does not satisfy the relevant database security policies. sl@0: Note that database specific errors categorised as ESqlDbError, and sl@0: other system-wide error codes may also be returned. sl@0: sl@0: @capability The calling application must satisfy the database policy of RSqlSecurityPolicy::ESchemaPolicy type; sl@0: sl@0: @see RSqlSecurityPolicy sl@0: @see RSqlSecurityPolicy::TPolicyType sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::Create(const TDesC& aDbFileName, sl@0: const RSqlSecurityPolicy& aSecurityPolicy, const TDesC8* aConfig) sl@0: { sl@0: __SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8)); sl@0: __SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf); sl@0: 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))); sl@0: TRAPD(err, iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbCreateSecure, aDbFileName, &aSecurityPolicy.Impl(), aConfig)); sl@0: SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_CREATE2_Exit, "Exit;0x%X;RSqlDatabase::Create;iImpl=0x%X;err=%d", (TUint)this, (TUint)iImpl, err)); sl@0: return err; sl@0: } sl@0: sl@0: /** sl@0: Opens an existing database, which can be: sl@0: @code sl@0: - shared non-secure; sl@0: - shared secure; sl@0: - private secure; sl@0: @endcode sl@0: sl@0: @param aDbFileName The name of the file that hosts the database. If this is sl@0: a secure database, then the format of the name must be: sl@0: \:\<[SID]database file name excluding the path\>. sl@0: If this is a non-secure database, then aDbFileName has to be the full database file name. sl@0: "[SID]" refers to SID of the application which created the database. sl@0: @param aConfig the configuration string "PARAM=VALUE;...." sl@0: The following parameters can be set using the configuration string: sl@0: cache_size=value - where "value" is the cache size in pages. sl@0: "value" must be a positive integer number; sl@0: sl@0: sl@0: @return KErrNone, the operation has completed successfully; sl@0: KErrNoMemory, an out of memory condition has occurred; sl@0: KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory; sl@0: KErrNotReady, the drive does not exist or is not ready; sl@0: KErrInUse, the file is already open; sl@0: KErrNotFound, database file not found; sl@0: KErrArgument, invalid configuration string, invalid parameter values sl@0: in the configuration string; sl@0: KErrGeneral, missing or invalid security policies (if the database to be opened is a secure database); sl@0: KErrPermissionDenied, the caller does not satisfy the relevant database security policies; sl@0: KErrNotSupported, incompatible SQL security version (if the database to be opened is a secure database). sl@0: Note that database specific errors categorised as ESqlDbError, and sl@0: other system-wide error codes may also be returned. sl@0: sl@0: @capability None, if aDbFileName refers to a non-secure database; sl@0: RSqlSecurityPolicy::ESchemaPolicy or sl@0: RSqlSecurityPolicy::EReadPolicy or sl@0: RSqlSecurityPolicy::EWritePolicy database policy type, if aDbFileName refers to a secure database; sl@0: sl@0: @see RSqlSecurityPolicy sl@0: @see RSqlSecurityPolicy::TPolicyType sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::Open(const TDesC& aDbFileName, const TDesC8* aConfig) sl@0: { sl@0: __SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8)); sl@0: __SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf); sl@0: 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))); sl@0: TRAPD(err, iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbOpen, aDbFileName, NULL, aConfig)); sl@0: SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_OPEN_EXIT, "Exit;0x%X;RSqlDatabase::Open;iImpl=0x%X;err=%d", (TUint)this, (TUint)iImpl, err)); sl@0: return err; sl@0: } sl@0: sl@0: /** sl@0: Creates a new shared non-secure or private secure database. sl@0: sl@0: @param aDbFileName The full path name of the file that is to host the database. sl@0: @param aConfig the configuration string "PARAM=VALUE;...." sl@0: The following parameters can be set using the configuration string: sl@0: cache_size=value - where "value" is the cache size in pages. sl@0: "value" must be a positive integer number; sl@0: page_size=value - where "value" is the page size in bytes. sl@0: The "page_size" parameter can accept the following values: sl@0: 512, 1024, 2048, 4096, 8192, 16384, 32768; sl@0: encoding=value - where "value" is the desired database encoding. sl@0: "value" could be either "UTF-8" or "UTF-16"; sl@0: compaction=value - where "value" is the desired compaction mode. sl@0: "value" could be either "background", "synchronous" or "manual". sl@0: sl@0: sl@0: @leave KErrNoMemory, an out of memory condition has occurred; sl@0: KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory; sl@0: KErrAlreadyExists, the file already exists; sl@0: KErrNotReady, the drive does not exist or is not ready; sl@0: KErrInUse, the file is already open; sl@0: KErrArgument, the file name refers to a secure database, sl@0: invalid configuration string, invalid parameter values sl@0: in the configuration string. sl@0: Note that the function may leave with database specific errors categorised as ESqlDbError and sl@0: other system-wide error codes. sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C void RSqlDatabase::CreateL(const TDesC& aDbFileName, const TDesC8* aConfig) sl@0: { sl@0: __SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8)); sl@0: __SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf); sl@0: 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))); sl@0: iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbCreate, aDbFileName, NULL, aConfig); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_CREATEL_EXIT, "Entry;0x%X;RSqlDatabase::CreateL;iImpl=0x%X", (TUint)this, (TUint)iImpl)); sl@0: } sl@0: sl@0: /** sl@0: Creates a new shared secure database. sl@0: @param aDbFileName The name of the file that is to host the database. sl@0: The format of the name is \:\<[SID]database file name excluding the path\>. sl@0: "[SID]" refers to the application SID. sl@0: @param aSecurityPolicy The container for the security policies. sl@0: @param aConfig the configuration string "PARAM=VALUE;...." sl@0: The following parameters can be set using the configuration string: sl@0: cache_size=value - where "value" is the cache size in pages. sl@0: "value" must be a positive integer number; sl@0: page_size=value - where "value" is the page size in bytes. sl@0: The "page_size" parameter can accept the following values: sl@0: 512, 1024, 2048, 4096, 8192, 16384, 32768; sl@0: encoding=value - where "value" is the desired database encoding. sl@0: "value" could be either "UTF-8" or "UTF-16"; sl@0: sl@0: compaction=value - where "value" is the desired compaction mode. sl@0: "value" could be either "background", "synchronous" or "manual". sl@0: sl@0: @leave KErrNoMemory, an out of memory condition has occurred; sl@0: KErrArgument, the file name does not refer to a secure database; sl@0: KErrArgument, system table name found in the security policies (aSecurityPolicy), sl@0: invalid configuration string, invalid parameter values sl@0: in the configuration string; sl@0: KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory; sl@0: KErrAlreadyExists, the file already exists; sl@0: KErrNotReady, the drive does not exist or is not ready; sl@0: KErrInUse, the file is already open; sl@0: KErrPermissionDenied, the caller does not satisfy the relevant database security policies. sl@0: Note that the function may leave with database specific errors categorised as ESqlDbError and sl@0: other system-wide error codes. sl@0: sl@0: @capability The calling application must satisfy the database policy of RSqlSecurityPolicy::ESchemaPolicy type; sl@0: sl@0: @see RSqlSecurityPolicy sl@0: @see RSqlSecurityPolicy::TPolicyType sl@0: */ sl@0: EXPORT_C void RSqlDatabase::CreateL(const TDesC& aDbFileName, sl@0: const RSqlSecurityPolicy& aSecurityPolicy, const TDesC8* aConfig) sl@0: { sl@0: __SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8)); sl@0: __SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf); sl@0: 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))); sl@0: iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbCreateSecure, aDbFileName, &aSecurityPolicy.Impl(), aConfig); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_CREATEL2_EXIT, "Exit;0x%X;RSqlDatabase::CreateL;iImpl=0x%X", (TUint)this, (TUint)iImpl)); sl@0: } sl@0: sl@0: /** sl@0: Opens an existing database, which can be: sl@0: @code sl@0: - shared non-secure; sl@0: - shared secure; sl@0: - private secure; sl@0: @endcode sl@0: sl@0: @param aDbFileName The name of the file that hosts the database. If this is sl@0: a secure database, then the format of the name must be: sl@0: \:\<[SID]database file name excluding the path\>. sl@0: If this is a non-secure database, then aDbFileName has to be the full database file name. sl@0: "[SID]" refers to SID of the application which created the database. sl@0: @param aConfig the configuration string "PARAM=VALUE;...." sl@0: The following parameters can be set using the configuration string: sl@0: cache_size=value - where "value" is the cache size in pages. sl@0: "value" must be a positive integer number; sl@0: sl@0: sl@0: @leave KErrNoMemory, an out of memory condition has occurred; sl@0: KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory; sl@0: KErrNotReady, the drive does not exist or is not ready; sl@0: KErrInUse, the file is already open; sl@0: KErrNotFound, database file not found; sl@0: KErrArgument, invalid configuration string, invalid parameter values sl@0: in the configuration string; sl@0: KErrGeneral, missing or invalid security policies (if the database to be opened is a secure database); sl@0: KErrPermissionDenied, the caller does not satisfy the relevant database security policies; sl@0: KErrNotSupported, incompatible SQL security version (if the database to be opened is a secure database). sl@0: Note that the function may leave with database specific errors categorised as ESqlDbError and sl@0: other system-wide error codes. sl@0: sl@0: @capability None, if aDbFileName refers to a non-secure database; sl@0: RSqlSecurityPolicy::ESchemaPolicy or sl@0: RSqlSecurityPolicy::EReadPolicy or sl@0: RSqlSecurityPolicy::EWritePolicy database policy type, if aDbFileName refers to a secure database; sl@0: sl@0: @see RSqlSecurityPolicy sl@0: @see RSqlSecurityPolicy::TPolicyType sl@0: */ sl@0: EXPORT_C void RSqlDatabase::OpenL(const TDesC& aDbFileName, const TDesC8* aConfig) sl@0: { sl@0: __SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8)); sl@0: SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_OPENL_ENTRY, "Entry;0x%X;RSqlDatabase::OpenL;aDbFileName=%S;aConfig=%s", (TUint)this, __SQLPRNSTR(aDbFileName), __SQLPRNSTR(config))); sl@0: iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbOpen, aDbFileName, NULL, aConfig); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_OPENL_EXIT, "Exit;0x%X;RSqlDatabase::OpenL;iImpl=0x%X", (TUint)this, (TUint)iImpl)); sl@0: } sl@0: sl@0: /** sl@0: Closes this handle to the database. sl@0: sl@0: The function frees memory and any allocated resources. sl@0: sl@0: You can reuse this object, but you must reinitialise it by calling sl@0: RSqlDatabase::Create() or RSqlDatabase::Open(). sl@0: sl@0: @see RSqlDatabase::Create() sl@0: @see RSqlDatabase::Open() sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C void RSqlDatabase::Close() sl@0: { sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_CLOSE_ENTRY, "Entry;0x%X;RSqlDatabase::Close;iImpl=0x%X", (TUint)this, (TUint)iImpl)); sl@0: delete iImpl; sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_CLOSE_EXIT, "Exit;0x%X;RSqlDatabase::Close;iImpl=0x%X", (TUint)this, (TUint)iImpl)); sl@0: iImpl = NULL; sl@0: } sl@0: sl@0: /** sl@0: Attaches an existing database to the current database connection. sl@0: sl@0: The attached database can be read, written or modified. sl@0: One database can be attched multiple times to the same connection, using different logical database names. sl@0: Tables in an attached database can be referred to using "database-name.table-name" syntax. sl@0: If an attached table doesn't have a duplicate table name in the main database, it doesn't sl@0: require a database name prefix. sl@0: sl@0: Transactions involving multiple attached databases are atomic. sl@0: sl@0: @param aDbFileName The name of the file that hosts the database. If this is sl@0: a secure database, then the format of the name must be: sl@0: \:\<[SID]database file name excluding the path\>. sl@0: If this is a private or shared non-secure database, then aDbFileName has to be the full sl@0: database file name. "[SID]" refers to SID of the application which created the attached database. sl@0: @param aDbName Logical database name. It must be unique (per database connection). This is the name which can sl@0: be used for accessing tables in the attached database. The syntax is "database-name.table-name". sl@0: sl@0: @return KErrNone, the operation has completed successfully; sl@0: KErrNoMemory, an out of memory condition has occurred; sl@0: KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory; sl@0: KErrNotReady, the drive does not exist or is not ready; sl@0: KErrInUse, the file is already open; sl@0: KErrNotFound, database file not found; sl@0: KErrGeneral, missing or invalid security policies (if the database to be opened is a secure database); sl@0: KErrPermissionDenied, the caller does not satisfy the relevant database security policies; sl@0: KErrNotSupported, incompatible SQL security version (if the database to be opened is a secure database). sl@0: Note that database specific errors categorised as ESqlDbError, and sl@0: other system-wide error codes may also be returned. sl@0: sl@0: @capability None, if aDbFileName refers to a non-secure database; sl@0: RSqlSecurityPolicy::ESchemaPolicy or sl@0: RSqlSecurityPolicy::EReadPolicy or sl@0: RSqlSecurityPolicy::EWritePolicy database policy type, if aDbFileName refers to a secure database; sl@0: sl@0: @see RSqlSecurityPolicy sl@0: @see RSqlSecurityPolicy::TPolicyType sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::Attach(const TDesC& aDbFileName, const TDesC& aDbName) sl@0: { sl@0: SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_ATTACH_ENTRY, "Entry;0x%X;RSqlDatabase::Attach;aDbFileName=%S;aDbName=%S", (TUint)this, __SQLPRNSTR(aDbFileName), __SQLPRNSTR(aDbName))); sl@0: TInt err = Impl().Attach(aDbFileName, aDbName); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_ATTACH_EXIT, "Entry;0x%X;RSqlDatabase::Attach;err=%d", (TUint)this, err)); sl@0: return err; sl@0: } sl@0: sl@0: /** sl@0: Detaches previously attached database. sl@0: sl@0: @param aDbName Logical database name. sl@0: The logical name of the database to be detached. sl@0: sl@0: @return KErrNone, the operation completed has successfully; sl@0: KErrNotFound, no attached database with aDbName name; sl@0: Note that database specific errors categorised as ESqlDbError, and sl@0: other system-wide error codes may also be returned. sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::Detach(const TDesC& aDbName) sl@0: { sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_DETACH_ENTRY, "Entry;0x%X;RSqlDatabase::Detach;aDbName=%S", (TUint)this, __SQLPRNSTR(aDbName))); sl@0: TInt err = Impl().Detach(aDbName); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_DETACH_EXIT, "Exit;0x%X;RSqlDatabase::Detach;err=%d", (TUint)this, err)); sl@0: return err; sl@0: } sl@0: sl@0: /** sl@0: Copies a database file to the specified location. sl@0: sl@0: Note that this is a static function, and its use is not sl@0: restricted to any specific RSqlDatabase instance. sl@0: sl@0: @param aSrcDbFileName Source database file name. sl@0: If this is a secure database, then the format of the name must be: sl@0: \:\<[SID]database file name excluding the path\>. sl@0: If this is a non-secure database, then aDbFileName has to be the full database file name. sl@0: "[SID]" refers to SID of the application which created the database. sl@0: @param aDestDbFileName Destination database file name. sl@0: If this is a secure database, then the format of the name must be: sl@0: \:\<[SID]database file name excluding the path\>. sl@0: If this is a non-secure database, then aDbFileName has to be the full database file name. sl@0: "[SID]" refers to SID of the application which performs the copying operation. sl@0: sl@0: The allowed copying operations are: sl@0: - secure to secure database. Only the application created the database is allowed to copy it. sl@0: - non-secure to non-secure database. No restrictions apply to this operation. sl@0: sl@0: @return KErrNone, the operation completed has successfully; sl@0: KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory; sl@0: KErrNotReady, the drive does not exist or is not ready; sl@0: KErrInUse, the file is already open; sl@0: KErrNotFound, database file not found; sl@0: KErrPermissionDenied, the SID of the calling application does not match the SID of source or destination database. sl@0: Note that other system-wide error codes may also be returned. sl@0: sl@0: @capability None sl@0: sl@0: Note that if the source database is a secure database, only the application, which created the database, can copy it. sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::Copy(const TDesC& aSrcDbFileName, const TDesC& aDestDbFileName) sl@0: { sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_COPY_ENTRY, "Entry;0;RSqlDatabase::Copy;aSrcDbFileName=%S;aDestDbFileName=%S", __SQLPRNSTR(aSrcDbFileName), __SQLPRNSTR(aDestDbFileName))); sl@0: TInt err = CSqlDatabaseImpl::Copy(aSrcDbFileName, aDestDbFileName); sl@0: SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_COPY_EXIT, "Exit;0;RSqlDatabase::Copy;err=%d", err)); sl@0: return err; sl@0: } sl@0: sl@0: /** sl@0: Deletes the specified database file. sl@0: sl@0: Note that this is a static function, and its use is not sl@0: restricted to any specific RSqlDatabase instance. sl@0: sl@0: @param aDbFileName The name of the database file. sl@0: If this is a secure database, then the format of the name must be: sl@0: \:\<[SID]database file name excluding the path\>. sl@0: If this is a private or shared non-secure database, then aDbFileName has to be the sl@0: full database file name. "[SID]" refers to SID of the application which created the database. sl@0: sl@0: @return KErrNone, the operation has completed successfully; sl@0: KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory; sl@0: KErrNotReady, the drive does not exist or is not ready; sl@0: KErrInUse, the database file is in use; sl@0: KErrNotFound, the database file cannot be found; sl@0: KErrAccessDenied, access to the database file is denied (e.g. it might be a read-only file); sl@0: KErrPermissionDenied, the SID of the calling application does not match the SID of the database; sl@0: Note that other system-wide error codes may also be returned. sl@0: sl@0: @capability None sl@0: sl@0: Note that if the database to be deleted is a secure database, only the application, which created the database, can delete it. sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::Delete(const TDesC& aDbFileName) sl@0: { sl@0: SQL_TRACE_BORDER(OstTraceExt1(TRACE_BORDER, RSQLDATABASE_DELETE_ENTRY, "Entry;0;RSqlDatabase::Delete;aDbFileName=%S", __SQLPRNSTR(aDbFileName))); sl@0: TInt err = CSqlDatabaseImpl::Delete(aDbFileName); sl@0: SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_DELETE_EXIT, "Exit;0;RSqlDatabase::Delete;err=%d", err)); sl@0: return err; sl@0: } sl@0: sl@0: /** sl@0: Initializes aSecurityPolicy output parameter with a copy of the database security policies. sl@0: The caller is responsible for destroying the initialized aSecurityPolicy paramemter. sl@0: sl@0: Note that there may be no security policies in force for this database. sl@0: sl@0: @param aSecurityPolicy Input/Output parameter, which will be initialized with the database sl@0: security policies. sl@0: sl@0: @return KErrNone, the operation has completed successfully; sl@0: KErrNotSupported, the current database is not a secure database; sl@0: KErrNoMemory, an out of memory condition has occurred; sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::GetSecurityPolicy(RSqlSecurityPolicy& aSecurityPolicy) const sl@0: { sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_GETSECURITYPOLICY_ENTRY, "Entry;0x%X;RSqlDatabase::GetSecurityPolicy;aSecurityPolicy=0x%X", (TUint)this, (TUint)&aSecurityPolicy)); sl@0: TRAPD(err, CSqlSecurityPolicy* securityPolicy = Impl().CloneSecurityPolicyL(); aSecurityPolicy.Set(*securityPolicy)); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_GETSECURITYPOLICY_EXIT, "Exit;0x%X;RSqlDatabase::GetSecurityPolicy;err=%d", (TUint)this, err)); sl@0: return err; sl@0: } sl@0: sl@0: /** sl@0: Initializes aSecurityPolicy output parameter with a copy of the database security policies. sl@0: The caller is responsible for destroying the initialized aSecurityPolicy paramemter. sl@0: sl@0: Note that there may be no security policies in force for this database. sl@0: sl@0: @param aSecurityPolicy Input/Output parameter, which will be initialized with the database sl@0: security policies. sl@0: sl@0: @leave KErrNotSupported, the current database is not a secure database; sl@0: KErrNoMemory, an out of memory condition has occurred; sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C void RSqlDatabase::GetSecurityPolicyL(RSqlSecurityPolicy& aSecurityPolicy) const sl@0: { sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_GETSECURITYPOLICYL_ENTRY, "Entry;0x%X;RSqlDatabase::GetSecurityPolicyL;aSecurityPolicy=0x%X", (TUint)this, (TUint)&aSecurityPolicy)); sl@0: CSqlSecurityPolicy* securityPolicy = Impl().CloneSecurityPolicyL(); sl@0: aSecurityPolicy.Set(*securityPolicy); sl@0: SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_GETSECURITYPOLICYL_EXIT, "Exit;0x%X;RSqlDatabase::GetSecurityPolicyL", (TUint)this)); sl@0: } sl@0: sl@0: /** sl@0: Sets the transaction isolation level for the database. sl@0: sl@0: A transaction isolation level defines the way in which a transaction sl@0: interacts with other transactions that may be in progress concurrently. sl@0: sl@0: Transaction isolation levels are defined by the values of the sl@0: RSqlDatabase::TIsolationLevel enum. sl@0: sl@0: The default isolation level is RSqlDatabase::ESerializable sl@0: sl@0: Note that the isolation level is not a persistent property of the database. sl@0: It is set to the default value, i.e. RSqlDatabase::ESerializable, sl@0: whenever the database is created or opened. sl@0: sl@0: @param aIsolationLevel The isolation level to be set. sl@0: sl@0: @return KErrNone, if the operation has completed successfully; sl@0: KErrNotSupported, invalid (not supported) transaction isolation level; sl@0: sl@0: @see RSqlDatabase::TIsolationLevel sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::SetIsolationLevel(RSqlDatabase::TIsolationLevel aIsolationLevel) sl@0: { sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_SETISOLATIONLEVEL_ENTRY, "Entry;0x%X;RSqlDatabase::SetIsolationLevel;aIsolationLevel=%d", (TUint)this, aIsolationLevel)); sl@0: TInt err = Impl().SetIsolationLevel(aIsolationLevel); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_SETISOLATIONLEVEL_EXIT, "Exit;0x%X;RSqlDatabase::SetIsolationLevel;err=%d", (TUint)this, err)); sl@0: return err; sl@0: } sl@0: sl@0: /** sl@0: Executes one or more 16-bit SQL statements. sl@0: sl@0: This method should be used for executing DDL/DML statements, but note the following point: sl@0: - if an SQL statement contains one or more parameters, then the function will execute it, sl@0: giving the parameters default NULL values. sl@0: sl@0: This class (RSqlDatabase) does not offer functions for setting the parameter values. sl@0: Use the RSqlStatement class instead. sl@0: sl@0: If the call to this function fails because of a database-specific type error sl@0: (i.e. the error is categorised as of type ESqlDbError), then a textual description of sl@0: the error can be obtained calling RSqlDatabase::LastErrorMessage(). sl@0: sl@0: @param aSqlStmt A string of 16-bit wide characters containing one or more DDL/DML SQL statements; sl@0: each statement is separated by a ';' character. sl@0: sl@0: @return >=0, The operation has completed successfully. The number of database rows that were sl@0: changed/inserted/deleted by the most recently completed DDL/DML sql statement. sl@0: Exception: If the executed statement is "DELETE FROM ", then the function returns 0 sl@0: if the operation has completed successfully (disregarding the number of the deleted rows); sl@0: KErrNoMemory, an out of memory condition has occured; sl@0: KSqlErrGeneral, a syntax error has occurred - text describing the problem sl@0: can be obtained by calling RSqlDatabase::LastErrorMessage(); sl@0: KErrDiskFull, There is no available disk space to complete the operation. If the executed statement is a DELETE sl@0: statement, try to use the reserved disk space (if there is a reserved disk space) to complete the operation. sl@0: In all other cases the database connection should be closed and some disk space freed before reopening sl@0: the database; sl@0: KErrPermissionDenied, the caller does not satisfy the relevant database security policies. sl@0: Note that database specific errors categorised as ESqlDbError, and sl@0: other system-wide error codes may also be returned. sl@0: sl@0: @capability None, if current RSqlDatabase object represents a handle to a non-secure database; sl@0: RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema; sl@0: RSqlSecurityPolicy::EReadPolicy or sl@0: RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database; sl@0: RSqlSecurityPolicy::EWritePolicy or sl@0: RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database; sl@0: sl@0: @see RSqlStatement sl@0: @see TSqlRetCodeClass::ESqlDbError sl@0: @see RSqlDatabase::LastErrorMessage() sl@0: @see RSqlSecurityPolicy sl@0: @see RSqlSecurityPolicy::TPolicyType sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::Exec(const TDesC& aSqlStmt) sl@0: { sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXEC16_ENTRY, "Entry;0x%X;RSqlDatabase::Exec16;aSqlStmt=%S", (TUint)this, __SQLPRNSTR(aSqlStmt))); sl@0: TInt err = Impl().Exec(aSqlStmt); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXEC16_EXIT, "Exit;0x%X;RSqlDatabase::Exec16;err=%d", (TUint)this, err)); sl@0: return err; sl@0: } sl@0: sl@0: /** sl@0: Executes one or more 8-bit SQL statements. sl@0: sl@0: This method should be used for executing DDL/DML statements, but note the following point: sl@0: - if an SQL statement contains one or more parameters, then the function will execute it, sl@0: giving the parameters default NULL values. sl@0: sl@0: This class (RSqlDatabase) does not offer functions for setting the parameter values. sl@0: Use the RSqlStatement class instead. sl@0: sl@0: If the call to this function fails because of a database-specific type error sl@0: (i.e. the error is categorised as ESqlDbError), then a textual description of sl@0: the error can be obtained calling RSqlDatabase::LastErrorMessage(). sl@0: sl@0: @param aSqlStmt A string of 8-bit wide characters containing one or more DDL/DML SQL statements; sl@0: each statement is separated by a ';' character. sl@0: sl@0: @return >=0, The operation has completed successfully. The number of database rows that were sl@0: changed/inserted/deleted by the most recently completed DDL/DML sql statement. sl@0: Exception: If the executed statement is "DELETE FROM
", then the function returns 0 sl@0: if the operation has completed successfully (disregarding the number of the deleted rows); sl@0: KErrNoMemory, an out of memory condition has occured; sl@0: KSqlErrGeneral, a syntax error has occurred - text describing the problem sl@0: can be obtained by calling RSqlDatabase::LastErrorMessage(); sl@0: KErrDiskFull, There is no available disk space to complete the operation. If the executed statement is a DELETE sl@0: statement, try to use the reserved disk space (if there is a reserved disk space) to complete the operation. sl@0: In all other cases the database connection should be closed and some disk space freed before reopening sl@0: the database; sl@0: KErrPermissionDenied, the caller does not satisfy the relevant database security policies; sl@0: Note that database specific errors categorised as ESqlDbError, and sl@0: other system-wide error codes may also be returned. sl@0: sl@0: @capability None, if current RSqlDatabase object represents a handle to a non-secure database; sl@0: RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema; sl@0: RSqlSecurityPolicy::EReadPolicy or sl@0: RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database; sl@0: RSqlSecurityPolicy::EWritePolicy or sl@0: RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database; sl@0: sl@0: @see RSqlStatement sl@0: @see TSqlRetCodeClass::ESqlDbError sl@0: @see RSqlDatabase::LastErrorMessage() sl@0: @see RSqlSecurityPolicy sl@0: @see RSqlSecurityPolicy::TPolicyType sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::Exec(const TDesC8& aSqlStmt) sl@0: { sl@0: __SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXEC8_ENTRY, "Entry;0x%X;RSqlDatabase::Exec8;aSqlStmt=%s", (TUint)this, __SQLPRNSTR8(aSqlStmt, des16prnbuf))); sl@0: TInt err = Impl().Exec(aSqlStmt); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXEC8_EXIT, "Exit;0x%X;RSqlDatabase::Exec8;err=%d", (TUint)this, err)); sl@0: return err; sl@0: } sl@0: sl@0: /** sl@0: Executes one or more 16-bit SQL statements asynchronously to allow client to avoid being blocked sl@0: by server activity. sl@0: sl@0: No other operations can be performed on current RSqlDatabase object and RSqlStatement objects using it sl@0: until the asynchronous operation completes. sl@0: sl@0: This method should be used for executing DDL/DML statements, but note the following point: sl@0: - if an SQL statement contains one or more parameters, then the function will execute it, sl@0: giving the parameters default NULL values. sl@0: sl@0: This class (RSqlDatabase) does not offer functions for setting the parameter values. sl@0: Use the RSqlStatement class instead. sl@0: sl@0: If the call to this function fails because of a database-specific type error sl@0: (i.e. the error is categorised as ESqlDbError), then a textual description of sl@0: the error can be obtained calling RSqlDatabase::LastErrorMessage(). sl@0: sl@0: @param aSqlStmt A string of 16-bit wide characters containing one or more DDL/DML SQL statements; sl@0: each statement is separated by a ';' character. sl@0: @param aStatus Completion status of asynchronous request, one of the following: sl@0: >=0, The operation has completed successfully. The number of database rows that were sl@0: changed/inserted/deleted by the most recently completed DDL/DML sql statement. sl@0: Exception: If the executed statement is "DELETE FROM
", then the function returns 0 sl@0: if the operation has completed successfully (disregarding the number of the deleted rows); sl@0: KErrNoMemory, an out of memory condition has occured; sl@0: KSqlErrGeneral, a syntax error has occurred - text describing the problem sl@0: can be obtained by calling RSqlDatabase::LastErrorMessage(); sl@0: KErrDiskFull, There is no available disk space to complete the operation. If the executed statement is a DELETE sl@0: statement, try to use the reserved disk space (if there is a reserved disk space) to complete the operation. sl@0: In all other cases the database connection should be closed and some disk space freed before reopening sl@0: the database; sl@0: KErrPermissionDenied, the caller does not satisfy the relevant database security policies; sl@0: Note that aStatus may be set with database specific errors categorised as ESqlDbError, sl@0: and other system-wide error codes. sl@0: sl@0: sl@0: @capability None, if current RSqlDatabase object represents a handle to a non-secure database; sl@0: RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema; sl@0: RSqlSecurityPolicy::EReadPolicy or sl@0: RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database; sl@0: RSqlSecurityPolicy::EWritePolicy or sl@0: RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database; sl@0: sl@0: @see RSqlStatement sl@0: @see TSqlRetCodeClass::ESqlDbError sl@0: @see RSqlDatabase::LastErrorMessage() sl@0: @see RSqlSecurityPolicy sl@0: @see RSqlSecurityPolicy::TPolicyType sl@0: */ sl@0: EXPORT_C void RSqlDatabase::Exec(const TDesC& aSqlStmt, TRequestStatus& aStatus) sl@0: { sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXECASYNC16_ENTRY, "Entry;0x%X;RSqlDatabase::ExecAsync16;aSqlStmt=%S", (TUint)this, __SQLPRNSTR(aSqlStmt))); sl@0: Impl().Exec(aSqlStmt, aStatus); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXECASYNC16_EXIT, "Exit;0x%X;RSqlDatabase::ExecAsync16;aStatus.Int()=%d", (TUint)this, aStatus.Int())); sl@0: } sl@0: sl@0: /** sl@0: Executes one or more 8-bit SQL statements asynchronously to allow client to avoid being blocked sl@0: by server activity. sl@0: sl@0: No other operations can be performed on current RSqlDatabase object and RSqlStatement objects using it sl@0: until the asynchronous operation completes. sl@0: sl@0: This method should be used for executing DDL/DML statements, but note the following point: sl@0: - if an SQL statement contains one or more parameters, then the function will execute it, sl@0: giving the parameters default NULL values. sl@0: sl@0: This class (RSqlDatabase) does not offer functions for setting the parameter values. sl@0: Use the RSqlStatement class instead. sl@0: sl@0: If the call to this function fails because of a database-specific type error sl@0: (i.e. the error is categorised as ESqlDbError), then a textual description of sl@0: the error can be obtained calling RSqlDatabase::LastErrorMessage(). sl@0: sl@0: @param aSqlStmt A string of 8-bit wide characters containing one or more DDL/DML SQL statements; sl@0: each statement is separated by a ';' character. sl@0: @param aStatus Completion status of asynchronous request, one of the following: sl@0: >=0, The operation has completed successfully. The number of database rows that were sl@0: changed/inserted/deleted by the most recently completed DDL/DML sql statement. sl@0: Exception: If the executed statement is "DELETE FROM
", then the function returns 0 sl@0: if the operation has completed successfully (disregarding the number of the deleted rows); sl@0: KErrNoMemory, an out of memory condition has occured; sl@0: KSqlErrGeneral, a syntax error has occurred - text describing the problem sl@0: can be obtained by calling RSqlDatabase::LastErrorMessage(); sl@0: KErrDiskFull, There is no available disk space to complete the operation. If the executed statement is a DELETE sl@0: statement, try to use the reserved disk space (if there is a reserved disk space) to complete the operation. sl@0: In all other cases the database connection should be closed and some disk space freed before reopening sl@0: the database; sl@0: KErrPermissionDenied, the caller does not satisfy the relevant database security policies; sl@0: Note that aStatus may be set with database specific errors categorised as ESqlDbError, sl@0: and other system-wide error codes. sl@0: sl@0: sl@0: @capability None, if current RSqlDatabase object represents a handle to a non-secure database; sl@0: RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema; sl@0: RSqlSecurityPolicy::EReadPolicy or sl@0: RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database; sl@0: RSqlSecurityPolicy::EWritePolicy or sl@0: RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database; sl@0: sl@0: @see RSqlStatement sl@0: @see TSqlRetCodeClass::ESqlDbError sl@0: @see RSqlDatabase::LastErrorMessage() sl@0: @see RSqlSecurityPolicy sl@0: @see RSqlSecurityPolicy::TPolicyType sl@0: */ sl@0: EXPORT_C void RSqlDatabase::Exec(const TDesC8& aSqlStmt, TRequestStatus& aStatus) sl@0: { sl@0: __SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXECASYNC8_ENTRY, "Entry;0x%X;RSqlDatabase::ExecAsync8;aSqlStmt=%s", (TUint)this, __SQLPRNSTR8(aSqlStmt, des16prnbuf))); sl@0: Impl().Exec(aSqlStmt, aStatus); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXECASYNC8_EXIT, "Exit;0x%X;RSqlDatabase::ExecAsync8;aStatus.Int()=%d", (TUint)this, aStatus.Int())); sl@0: } sl@0: sl@0: /** sl@0: Retrieves a reference to the textual description of the error returned by the sl@0: most recent call to any of the functions: sl@0: - RSqlDatabase::Exec() sl@0: - RSqlStatement::Exec() sl@0: - RSqlStatement::Next() sl@0: - RSqlStatement::Reset() sl@0: sl@0: Note that the function can only return a reference to text for sl@0: database-specific type errors, i.e. those errors that are categorised as of sl@0: type ESqlDbError. sl@0: sl@0: @return A non-modifiable pointer descriptor representing the most recent error sl@0: message. Note that message may be NULL, i.e. the descriptor may have sl@0: zero length. sl@0: sl@0: @see TSqlRetCodeClass::ESqlDbError sl@0: @see RSqlDatabase::Exec() sl@0: @see RSqlStatement::Exec() sl@0: @see RSqlStatement::Next() sl@0: @see RSqlStatement::Reset() sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C TPtrC RSqlDatabase::LastErrorMessage() const sl@0: { sl@0: TPtrC msg(Impl().LastErrorMessage()); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_LASTERRORMESSAGE, "0x%X;RSqlDatabase::LastErrorMessage;msg=%S", (TUint)this, __SQLPRNSTR(msg))); sl@0: return msg; sl@0: } sl@0: sl@0: /** sl@0: Returns the ROWID of the most recent successful INSERT into the database sl@0: from this database connection. sl@0: sl@0: @return >0, the ROWID of the most recent successful INSERT into the database sl@0: from this database connection; sl@0: 0, if no successful INSERTs have ever occurred from this database connection sl@0: <0, if one of the system-wide error codes is returned sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C TInt64 RSqlDatabase::LastInsertedRowId() const sl@0: { sl@0: SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_LASTINSERTEDROWID_ENTRY, "Entry;0x%X;RSqlDatabase::LastInsertedRowId", (TUint)this)); sl@0: TInt64 rc = Impl().LastInsertedRowId(); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_LASTINSERTEDROWID_EXIT, "Exit;0x%X;RSqlDatabase::LastInsertedRowId;RowId=%lld", (TUint)this, rc)); sl@0: return rc; sl@0: } sl@0: sl@0: /** sl@0: Checks the database transaction state. sl@0: sl@0: @return True, if the database is in transaction, false otherwise. sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C TBool RSqlDatabase::InTransaction() const sl@0: { sl@0: SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_INTRABSACTION_ENTRY, "Entry;0x%X;RSqlDatabase::InTransaction", (TUint)this)); sl@0: TBool res = Impl().InTransaction(); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_INTRABSACTION_EXIT, "Exit;0x%X;RSqlDatabase::InTransaction;res=%d", (TUint)this, res)); sl@0: return res; sl@0: } sl@0: sl@0: /** sl@0: Returns the database file size, in bytes. sl@0: sl@0: @return >= 0, the operation has completed successfully. The number is the size of the main sl@0: database file; sl@0: KErrNoMemory, an out of memory condition has occurred; sl@0: KErrTooBig, the database is too big and the size cannot fit into 32-bit signed integer; sl@0: Note that database specific errors categorised as ESqlDbError, and sl@0: other system-wide error codes may also be returned. sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::Size() const sl@0: { sl@0: SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_SIZE_ENTRY, "Entry;0x%X;RSqlDatabase::Size", (TUint)this)); sl@0: TInt rc = Impl().Size(); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_SIZE_EXIT, "Exit;0x%X;RSqlDatabase::Size;rc=%d", (TUint)this, rc)); sl@0: return rc; sl@0: } sl@0: sl@0: /** sl@0: Returns the database file size and free space, in bytes. sl@0: sl@0: @param aSize An output parameter. If the call was successfull the aSize object will contain information sl@0: about the database size and database free space. sl@0: @param aDbName The attached database name or KNullDesC for the main database sl@0: sl@0: @return KErrNone, The operation has completed succesfully; sl@0: KErrBadName, Invalid (too long) attached database name; sl@0: KSqlErrGeneral, There is no an attached database with aDbName name; sl@0: Note that database specific errors categorised as ESqlDbError, and sl@0: other system-wide error codes may also be returned. sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::Size(RSqlDatabase::TSize& aSize, const TDesC& aDbName) const sl@0: { sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_SIZE2_ENTRY, "Entry;0x%X;RSqlDatabase::Size-2;aDbName=%S", (TUint)this, __SQLPRNSTR(aDbName))); sl@0: TInt err = Impl().Size(aSize, aDbName); sl@0: 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)); sl@0: return err; sl@0: } sl@0: sl@0: /** sl@0: Compacts the database. sl@0: This function should be used for databases that have been configured for a manual compaction during sl@0: the database creation. sl@0: The function has no effect if the database has been configured for an auto compaction. sl@0: The function has no effect if the aSize argument value is zero. sl@0: The function has no effect also if there aren't any free pages in the database file. sl@0: If the database has been configured for a background compaction, then the function works as if the database sl@0: has been configured for a manual compaction. sl@0: sl@0: @param aSize Can be one of: sl@0: RSqlDatabase::EMaxCompaction - requests a full database compaction. All free pages sl@0: (if any exists) will be removed; sl@0: Positive 32-bit signed integer value - the server will attempt to compact the database removing sl@0: at most aSize bytes from the database file, rounded up to the nearest page count, sl@0: e.g. request for removing 1 byte will remove one free page from the database; sl@0: sl@0: @param aDbName The attached database name or KNullDesC for the main database sl@0: sl@0: @return Zero or positive integer - the operation has completed succesfully, the return value is the sl@0: size of the removed free space in bytes, sl@0: KErrArgument, Invalid aSize value; sl@0: KErrBadName, Invalid (too long) attached database name; sl@0: KSqlErrReadOnly, Read-only database; sl@0: KSqlErrGeneral, There is no an attached database with aDbName name; sl@0: Note that database specific errors categorised as ESqlDbError, and sl@0: other system-wide error codes may also be returned. sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::Compact(TInt64 aSize, const TDesC& aDbName) sl@0: { sl@0: SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_COMPACT_ENTRY, "Entry;0x%X;RSqlDatabase::Compact;aSize=%lld;aDbName=%S", (TUint)this, aSize, __SQLPRNSTR(aDbName))); sl@0: TInt rc = Impl().Compact(aSize, aDbName); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_COMPACT_EXIT, "Exit;0x%X;RSqlDatabase::Compact;rc=%d", (TUint)this, rc)); sl@0: return rc; sl@0: } sl@0: sl@0: /** sl@0: Compacts the database asynchronously. sl@0: This function should be used for databases that have been configured for a manual compaction during sl@0: the database creation. sl@0: The function has no effect if the database has been configured for an auto compaction. sl@0: The function has no effect if the aSize argument value is zero. sl@0: The function has no effect also if there aren't any free pages in the database file. sl@0: If the database has been configured for a background compaction, then the function works as if the database sl@0: has been configured for a manual compaction. sl@0: sl@0: @param aStatus Completion status of asynchronous request, one of the following: sl@0: Zero or positive integer - the operation has completed succesfully, the return value is the sl@0: size of the removed free space in bytes, sl@0: KErrArgument, Invalid aSize value; sl@0: KErrBadName, Invalid (too long) attached database name; sl@0: KSqlErrReadOnly, Read-only database; sl@0: KSqlErrGeneral, There is no an attached database with aDbName name; sl@0: Note that database specific errors categorised as ESqlDbError, and sl@0: other system-wide error codes may also be returned. sl@0: sl@0: sl@0: @param aSize Can be one of: sl@0: RSqlDatabase::EMaxCompaction - requests a full database compaction. All free pages sl@0: (if any exists) will be removed; sl@0: Positive 32-bit signed integer value - the server will attempt to compact the database removing sl@0: at most aSize bytes from the database file, rounded up to the nearest page count, sl@0: e.g. request for removing 1 byte will remove one free page from the database; sl@0: sl@0: @param aDbName The attached database name or KNullDesC for the main database sl@0: sl@0: @capability None sl@0: */ sl@0: EXPORT_C void RSqlDatabase::Compact(TInt64 aSize, TRequestStatus& aStatus, const TDesC& aDbName) sl@0: { sl@0: SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_COMPACTASYNC_ENTRY, "Entry;0x%X;RSqlDatabase::CompactAsync;aSize=%lld;aDbName=%S", (TUint)this, aSize, __SQLPRNSTR(aDbName))); sl@0: Impl().Compact(aSize, aDbName, aStatus); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_COMPACTASYNC_EXIT, "Exit;0x%X;RSqlDatabase::CompactAsync;aStatus.Int()=%d", (TUint)this, aStatus.Int())); sl@0: } sl@0: sl@0: /** sl@0: Reserves a predefined amount of disk space on the drive where the database file is. sl@0: sl@0: At the moment the max possible amount, allowed by the file server, is reserved on the database file drive. sl@0: Use this call to ensure that if your "delete records" transaction fails because of "out of sl@0: disk space" circumstances, you can get an access to the already reserved disk space and sl@0: complete your transaction successfully the second time. sl@0: sl@0: There is no strong, 100% guarantee, that the reserved disk space will always help the client sl@0: in "low memory" situations. sl@0: sl@0: @param aSpace This parameter is not used at the moment. sl@0: sl@0: @return KErrNone, The operation has completed succesfully; sl@0: KErrNoMemory, Out of memory condition has occured; sl@0: KErrAlreadyExists, The space has already been reserved; sl@0: Note that other system-wide error codes may also be returned. sl@0: sl@0: @see RSqlDatabase::FreeReservedSpace() sl@0: @see RSqlDatabase::GetReserveAccess() sl@0: @see RSqlDatabase::ReleaseReserveAccess() sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::ReserveDriveSpace(TInt aSize) sl@0: { sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_RESERVEDRIVESPACE_ENTRY, "Entry;0x%X;RSqlDatabase::ReserveDriveSpace;aSize=%d", (TUint)this, aSize)); sl@0: //Usage of the IPC call arguments: sl@0: //Arg 0: [out] requested size sl@0: TInt err = Impl().Session().SendReceive(ESqlSrvDbReserveDriveSpace, TIpcArgs(aSize)); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_RESERVEDRIVESPACE_EXIT, "Exit;0x%X;RSqlDatabase::ReserveDriveSpace;err=%d", (TUint)this, err)); sl@0: return err; sl@0: } sl@0: sl@0: /** sl@0: Frees the reserved disk space. sl@0: sl@0: @see RSqlDatabase::ReserveDriveSpace() sl@0: @see RSqlDatabase::GetReserveAccess() sl@0: @see RSqlDatabase::ReleaseReserveAccess() sl@0: */ sl@0: EXPORT_C void RSqlDatabase::FreeReservedSpace() sl@0: { sl@0: SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_FREERESERVEDSPACE_ENTRY, "Entry;0x%X;RSqlDatabase::FreeReservedSpace", (TUint)this)); sl@0: __SQLTRACE_BORDERVAR(TInt err =) Impl().Session().SendReceive(ESqlSrvDbFreeReservedSpace); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_FREERESERVEDSPACE_EXIT, "Exit;0x%X;RSqlDatabase::FreeReservedSpace;err=%d", (TUint)this, err)); sl@0: } sl@0: sl@0: /** sl@0: Gives the client an access to the already reserved disk space. sl@0: sl@0: @return KErrNone, The operation has completed succesfully; sl@0: KErrNotFound, An attempt is made to get an access to a disk space, which is not reserved yet; sl@0: KErrInUse, An access to the reserved space has already been given; sl@0: Note that other system-wide error codes may also be returned. sl@0: sl@0: @see RSqlDatabase::ReserveDriveSpace() sl@0: @see RSqlDatabase::FreeReservedSpace() sl@0: @see RSqlDatabase::ReleaseReserveAccess() sl@0: */ sl@0: EXPORT_C TInt RSqlDatabase::GetReserveAccess() sl@0: { sl@0: SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_GETRESERVEACCESS_ENTRY, "Exit;0x%X;RSqlDatabase::GetReserveAccess", (TUint)this)); sl@0: TInt err = Impl().Session().SendReceive(ESqlSrvDbGetReserveAccess); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_GETRESERVEACCESS_EXIT, "Exit;0x%X;RSqlDatabase::GetReserveAccess;err=%d", (TUint)this, err)); sl@0: return err; sl@0: } sl@0: sl@0: /** sl@0: Releases the access to the reserved disk space. sl@0: sl@0: @see RSqlDatabase::ReserveDriveSpace() sl@0: @see RSqlDatabase::FreeReservedSpace() sl@0: @see RSqlDatabase::GetReserveAccess() sl@0: */ sl@0: EXPORT_C void RSqlDatabase::ReleaseReserveAccess() sl@0: { sl@0: SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_RELEASERESERVEACCESS_ENTRY, "Entry;0x%X;RSqlDatabase::ReleaseReserveAccess", (TUint)this)); sl@0: __SQLTRACE_BORDERVAR(TInt err =) Impl().Session().SendReceive(ESqlSrvDbReleaseReserveAccess); sl@0: SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_RELEASERESERVEACCESS_EXIT, "Exit;0x%X;RSqlDatabase::ReleaseReserveAccess;err=%d", (TUint)this, err)); sl@0: } sl@0: sl@0: /** sl@0: Returns a reference to the implementation object of RSqlDatabase - CSqlDatabaseImpl. sl@0: sl@0: @panic SqlDb 2 Create() or Open() has not previously been called on this RSqlDatabase object. sl@0: sl@0: @internalComponent sl@0: */ sl@0: CSqlDatabaseImpl& RSqlDatabase::Impl() const sl@0: { sl@0: __ASSERT_ALWAYS(iImpl != NULL, __SQLPANIC(ESqlPanicInvalidObj)); sl@0: return *iImpl; sl@0: }