Update contrib.
1 // Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 Retrieves a reference to the textual description of the error returned by the
19 most recent call to any of the functions:
20 - CSqlSrvDatabase::ExecL();
21 - CSqlSrvStatement::NewLC();
22 - CSqlSrvStatement::Next();
23 - CSqlSrvStatement::Reset();
24 - CSqlSrvStatement::Exec();
26 Note that the function can only return a reference to text for
27 database-specific type errors, i.e. those errors that are categorised as of
30 @return A non-modifiable pointer descriptor representing the most recent error
31 message. Note that message may be NULL, i.e. the descriptor may have
34 @see CSqlSrvDatabase::ExecL()
35 @see CSqlSrvStatement::NewLC()
36 @see CSqlSrvStatement::Next()
37 @see CSqlSrvStatement::Reset()
38 @see CSqlSrvStatement::Exec()
40 inline TPtrC CSqlSrvDatabase::LastErrorMessage() const
42 const void* errMsg = sqlite3_errmsg16(iDbHandle);//"errMsg" - zero terminated string
43 TPtrC msg(reinterpret_cast <const TUint16*> (errMsg));//terminating zero removed
48 Executes one or more 16-bit SQL statements.
50 SQL statements of any kind can be executed, but note the following points:
51 - the function does not return any records if the SQL statement type is "SELECT".
52 - if an SQL statement contains one or more parameters, then the function will execute it,
53 giving the parameters default NULL values.
55 If the call to this function fails because of a database-specific type error
56 (i.e. the error is categorised as of type ESqlDbError), then a textual description of
57 the error can be obtained calling CSqlSrvDatabase::LastErrorMessage().
59 @param aSqlStmt A zero-terminated string descriptor of 16-bit wide characters containing one or more
60 SQL statements. Each statement is separated by a ';' character.
61 Note that the ExecL() call can modify the content of aSqlStmt parameter.
63 @leave KErrNoMemory, an out of memory condition has occured;
64 KSqlErrGeneral, a syntax error has occurred - text describing the problem
65 can be obtained by calling CSqlSrvDatabase::LastErrorMessage();
66 KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
67 Note that the function may also leave with some other database specific
68 errors categorised as ESqlDbError, and other system-wide error codes.
70 @see CSqlSrvDatabase::LastErrorMessage()
72 inline void CSqlSrvDatabase::ExecL(TDes16& aSqlStmt)
74 __SQLLEAVE_IF_ERROR(::DbExecStmt16(iDbHandle, aSqlStmt));
78 Executes one or more 8-bit SQL statements.
80 SQL statements of any kind can be executed, but note the following points:
81 - the function does not return any records if the SQL statement type is "SELECT".
82 - if an SQL statement contains one or more parameters, then the function will execute it,
83 giving the parameters default NULL values.
85 If the call to this function fails because of a database-specific type error
86 (i.e. the error is categorised as of type ESqlDbError), then a textual description of
87 the error can be obtained calling CSqlSrvDatabase::LastErrorMessage().
89 @param aSqlStmt A zero-terminated string descriptor of 8-bit wide characters containing one or more
90 SQL statements. Each statement is separated by a ';' character.
92 @leave KErrNoMemory, an out of memory condition has occured;
93 KSqlErrGeneral, a syntax error has occurred - text describing the problem
94 can be obtained by calling CSqlSrvDatabase::LastErrorMessage();
95 KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
96 Note that the function may also leave with some other database specific
97 errors categorised as ESqlDbError, and other system-wide error codes.
99 @see CSqlSrvDatabase::LastErrorMessage()
101 inline void CSqlSrvDatabase::ExecL(const TDesC8& aSqlStmt)
103 __SQLLEAVE_IF_ERROR(::DbExecStmt8(iDbHandle, aSqlStmt));
107 Sets the transaction isolation level for the database.
109 A transaction isolation level defines the way in which a transaction
110 interacts with other transactions that may be in progress concurrently.
112 Transaction isolation levels are defined by the values of the
113 RSqlDatabase::TIsolationLevel enum.
115 The default isolation level is RSqlDatabase::ESerializable
117 Note that the isolation level is not a persistent property of the database.
118 It is set to the default value, i.e. RSqlDatabase::ESerializable,
119 whenever the database is created or opened.
121 @param aLevel The isolation level to be set.
123 @leave KErrNotSupported, invalid (not supported) transaction isolation level.
124 Current implementation of CSqlSrvDatabase::SetIsolationLevelL()
125 does not support RSqlDatabase::EReadCommitted and RSqlDatabase::ERepeatableRead
126 transaction isolation levels.
128 inline void CSqlSrvDatabase::SetIsolationLevelL(RSqlDatabase::TIsolationLevel aLevel)
130 if(aLevel != RSqlDatabase::EReadUncommitted && aLevel != RSqlDatabase::ESerializable)
132 __SQLLEAVE(KErrNotSupported);
134 iAuthorizerDisabled = ETrue;
135 TInt err = ::DbExecStmt8(iDbHandle, aLevel == RSqlDatabase::EReadUncommitted ? KReadUncommittedPragma() : KSerializablePragma());
136 iAuthorizerDisabled = EFalse;
137 __SQLLEAVE_IF_ERROR(err);
141 @return sqlite3 handle
143 @panic SqlDb 7 In _DEBUG mode. iDbHandle is NULL.
145 inline sqlite3* CSqlSrvDatabase::RawDbHandle() const
147 __ASSERT_DEBUG(iDbHandle != NULL, __SQLPANIC(ESqlPanicInternalError));
152 @return A pointer to the database security policies object.
154 Note that there may be no security policies in force for this database (if it is not a secure database).
156 @see CSqlSecurityPolicy
158 inline const CSqlSecurityPolicy* CSqlSrvDatabase::SecurityPolicy() const
160 return iSecurityPolicy;
164 Installs user defined collations.
166 At the moment 5 user defined collations with the following names are installed:
167 - CompareC0 - 16-bit strings collated comaprison at level 0;
168 - CompareC1 - 16-bit strings collated comaprison at level 1;
169 - CompareC2 - 16-bit strings collated comaprison at level 2;
170 - CompareC3 - 16-bit strings collated comaprison at level 3;
171 - CompareF - 16-bit strings folded comaprison;
173 These user defined collations can be used in the following cases:
175 - as column constraint in "CREATE TABLE" SQL statements. For example:
177 CREATE TABLE A(Col1 TEXT COLLATE CompareC1)
179 In this case every time when Col1 values have to be compared, the SQL server will use CompareC1 collation.
181 - as column constraint in "CREATE INDEX" SQL statements. For example:
183 CREATE INDEX I ON A(Col1 COLLATE CompareC2)
185 In this case SQL server will use CompareC2 collation to compare Col1 values when using the index.
187 - In "ORDER BY" clause of "SELECT" SQL statements. For example:
189 SELECT * FROM A ORDER BY Col1 COLLATE CompareC3
191 In this case SQL server will use CompareC3 collation to compare Col1 values when building the result set.
193 This function is part of CSqlSrvDatabase instance initialization.
195 @leave The function may leave with some database specific errors categorised as ESqlDbError.
198 @see TSqlCollate::InstallCollationsL()
200 inline void CSqlSrvDatabase::InstallCollationsL()
202 TSqlCollationUtil collationUtil(iDbHandle);
203 collationUtil.InstallCollationsL();
207 Stores the initial settings in the system settings table of a database.
208 The initial settings are the specified collation dll name and version 0
209 of the database configuration file.
210 The collation dll name is used to uniquely identify the collation
211 method which is used by the collation comparison methods:
212 TDesC16::CompareC(), TDesC16::MatchC(), TDesC16::FindC().
213 This function is used when a new database is created.
215 @param aCollationDllName Collation dll name. It uniquely identifies the current collation method in use.
216 If the default collation method changes later then the database will be reindexed
217 and the new collation dll name will replace the existing one in the settings table.
218 @param aDbConfigFileVersion Current config file version or KSqlNullDbConfigFileVersion
219 @param aCompactionMode Database compaction mode, one of TSqlCompactionMode enum item values (except ESqlCompactionNotSet)
221 @see TSqlCompactionMode
223 @panic SqlDb 4 In _DEBUG mode if aCompactionMode parameter value is invalid.
225 inline void CSqlSrvDatabase::StoreSettingsL(const TDesC& aCollationDllName, TInt aDbConfigFileVersion, TSqlCompactionMode aCompactionMode)
227 __ASSERT_DEBUG(aCompactionMode == ESqlCompactionManual || aCompactionMode == ESqlCompactionBackground || aCompactionMode == ESqlCompactionAuto, __SQLPANIC(ESqlPanicBadArgument));
228 #if !defined(__SQL_DISABLE_SYMBIAN_SETTINGS_TABLE__)
229 TSqlDbSysSettings dbSettings(iDbHandle);
230 dbSettings.StoreSettingsL(KMainDb16, aCollationDllName, aDbConfigFileVersion, aCompactionMode);
232 aCollationDllName.Ptr(); // to avoid compile-time warning
233 #endif // !(__SQL_DISABLE_SYMBIAN_SETTINGS_TABLE__)
237 This function returns the number of database rows that were updated/inserted/deleted
238 by the most recently completed INSERT, UPDATE, or DELETE statement.
240 inline TInt CSqlSrvDatabase::LastChangesCount()
242 return sqlite3_changes(iDbHandle);
246 @return Returns the ROWID of the most recent successful INSERT into the database from this database connection.
247 If no successful inserts have ever occurred on this database connection, zero is returned.
249 inline TInt64 CSqlSrvDatabase::LastInsertedRowId()
251 return sqlite3_last_insert_rowid(iDbHandle);
254 //Check that the caller has at least one of {Read, Write, Schema} policies and leave with
255 //KErrPermissionDenied if it is not true.
256 //The "schema" policy check should be evaluated last in order to prevent too many platsec warnings reported in the log files.
257 //(It is very likely that the caller has either "read", "write" or both database security policies)
258 inline void CSqlSrvDatabase::BasicSecurityPolicyCheckL(const CSqlSecurityPolicy& aSecurityPolicy)
260 MSqlPolicyInspector& inspector = ::SqlServer().SecurityInspector();
261 if(!(inspector.Check(aSecurityPolicy.DbPolicy(RSqlSecurityPolicy::EReadPolicy)) ||
262 inspector.Check(aSecurityPolicy.DbPolicy(RSqlSecurityPolicy::EWritePolicy))||
263 inspector.Check(aSecurityPolicy.DbPolicy(RSqlSecurityPolicy::ESchemaPolicy))))
265 __SQLLEAVE(KErrPermissionDenied);
270 Current database connection transaction state.
272 @return True, the current database connection is in transaction, false otherwise.
274 inline TBool CSqlSrvDatabase::InTransaction() const
276 return !sqlite3_get_autocommit(iDbHandle);