Update contrib.
1 // Copyright (c) 2005-2009 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.
14 // SQL Client side API header
27 #include <s32std.h> //RReadStream, RWriteStream
30 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
31 #include <sqlresourcetester.h>
34 //Forward declarations
35 class CSqlSecurityPolicy;
37 class CSqlDatabaseImpl;
39 class CSqlStatementImpl;
40 class RSqlColumnReadStream;
41 class RSqlParamWriteStream;
42 class TSqlScalarFullSelectQuery;
44 class RSqlBlobReadStream;
45 class RSqlBlobWriteStream;
46 class TSqlResourceProfiler;
49 Used to specify that the ROWID of the most recently inserted record
50 from the specified database connection should be used as the ROWID
51 in a call to directly access a blob.
53 @see RSqlBlobReadStream
54 @see RSqlBlobWriteStream
60 const TInt KSqlLastInsertedRowId = -1;
63 A container for the security policies for a shared SQL database.
65 The container can contain:
66 - security policies that apply to the database.
67 - security policies that apply to individual database objects, i.e. database tables.
69 For the database, you use RSqlSecurityPolicy::SetDbPolicy() to apply a separate
71 - the database schema.
72 - read activity on the database.
73 - write activity on the database.
75 For database tables, you use RSqlSecurityPolicy::SetPolicy() to apply a separate
77 - write activity on each named database table.
78 - read activity on each named database table.
80 A client uses a RSqlSecurityPolicy object to create a secure database. It does this by:
81 - creating a RSqlSecurityPolicy object.
82 - setting all the appropriate security policies into it.
83 - passing the object as an argument to RSqlDatabase::Create().
84 - closing the RSqlSecurityPolicy object on return from RSqlDatabase::Create().
86 Once a secure shared database has been created with specific security policies,
87 these policies are made persistent and cannot be changed during the life of
90 Security policies are encapsulated by TSecurityPolicy objects.
91 The general usage pattern is to create the security policies container object
92 (RSqlSecurityPolicy) using a default security policy (TSecurityPolicy), and then
93 to assign more specific 'overriding' security policies.
95 The following code fragment shows how you do this:
98 TSecurityPolicy defaultPolicy;
99 RSqlSecurityPolicy securityPolicy;
100 RSqlDatabase database;
103 // Create security policies container object using a default security policy.
104 securityPolicy.Create(defaultPolicy);
106 // Set up policy to apply to database schema
108 TSecurityPolicy schemaPolicy;
110 err = securityPolicy.SetDbPolicy(RSqlSecurityPolicy::ESchemaPolicy, schemaPolicy);
112 // Set up policy to apply to write activity on the database
114 TSecurityPolicy writePolicy;
116 err = securityPolicy.SetDbPolicy(RSqlSecurityPolicy::EWritePolicy, writePolicy);
118 // Set up policy to apply to write activity to the database table named "Table1"
120 TSecurityPolicy tablePolicy1;
122 err = securityPolicy.SetPolicy(RSqlSecurityPolicy::ETable, _L("Table1"), RSqlSecurityPolicy::EWritePolicy, tablePolicy1);
124 // Set up policy to apply to read activity to the database table named "Table2"
125 TSecurityPolicy tablePolicy2;
126 err = securityPolicy.SetPolicy(RSqlSecurityPolicy::ETable, _L("Table2"), RSqlSecurityPolicy::EReadPolicy, tablePolicy2);
128 // Create the database, passing the security policies
129 err = database.Create(KDatabaseName, securityPolicy);
131 // We can close the RSqlSecurityPolicy object.
132 securityPolicy.Close();
135 Note that in this example code fragment, the client has not assigned specific
136 overriding policies for all possible cases; for example, no overriding policy
137 has been assigned to control read activity on the database, read activity
138 on "Table1", nor write activity on "Table2".
139 For these cases, the default security policy will apply.
141 A client can also retrieve a database's security policies by calling
142 RSqlDatabase::GetSecurityPolicy(); this returns a RSqlSecurityPolicy object
143 containing the security policies. Note that it is the client's responsibility
144 to close the RSqlSecurityPolicy object when the client no longer needs it. The
145 following code fragment suggests how you might do this:
148 RSqlDatabase database;
149 RSqlSecurityPolicy securityPolicy;
151 // Retrieve the security policies; on return from the call to
152 // GetSecurityPolicy(), the RSqlSecurityPolicy object passed
153 // to this function will contain the security policies.
154 database.GetSecurityPolicy(securityPolicy);
156 // This is the security policy that applies to database schema
157 TSecurityPolicy schemaPolicy = securityPolicy.DbPolicy(RSqlSecurityPolicy::ESchemaPolicy);
159 // This is the security policy that applies to write activity to the database
160 // table named "Table1".
161 TSecurityPolicy writePolicy = securityPolicy.Policy(RSqlSecurityPolicy::ETable, _L("Table1"), RSqlSecurityPolicy::EWritePolicy);
163 // Close the RSqlSecurityPolicy object when no longer needed.
164 securityPolicy.Close();
167 Note that in the cases where an 'overriding' security policy was not originally assigned,
168 then the security policy returned will simply be the default security policy.
170 Note: The database security policies are used to control the access to the objects (tables, indexes, triggers, views)
171 in the main database. The access to the temporary tables, indexes, etc. is not a subject of any restrictions, e.g.
172 a client with "read" database security policy only can create and use temporary tables, views, indexes, triggers.
176 @see RSqlSecurityPolicy::SetDbPolicy()
177 @see RSqlSecurityPolicy::SetPolicy()
182 class RSqlSecurityPolicy
184 friend class RSqlDatabase;
188 Defines a set of values that represents the database security policy types.
189 Each database security policy type refers to a set of capabilities encapsulated in
190 a TSecurityPolicy object. The TSecurityPolicy object defines what capabilities the calling
191 application must have in order to perform partiqular database operation.
197 Schema database security policy. An application with schema database security policy can
198 modify the database schema, write to database, read from database.
202 Read database security policy. An application with read database security policy can
207 Write database security policy. An application with write database security policy can
213 Not currently supported.
215 Defines a set of values that represents the database objects which can be protected by
216 database security policy types.
222 IMPORT_C RSqlSecurityPolicy();
223 IMPORT_C TInt Create(const TSecurityPolicy& aDefaultPolicy);
224 IMPORT_C void CreateL(const TSecurityPolicy& aDefaultPolicy);
225 IMPORT_C void Close();
226 IMPORT_C TInt SetDbPolicy(TPolicyType aPolicyType, const TSecurityPolicy& aPolicy);
227 IMPORT_C TInt SetPolicy(TObjectType aObjectType, const TDesC& aObjectName, TPolicyType aPolicyType, const TSecurityPolicy& aPolicy);
228 IMPORT_C TSecurityPolicy DefaultPolicy() const;
229 IMPORT_C TSecurityPolicy DbPolicy(TPolicyType aPolicyType) const;
230 IMPORT_C TSecurityPolicy Policy(TObjectType aObjectType, const TDesC& aObjectName, TPolicyType aPolicyType) const;
232 IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
233 IMPORT_C void InternalizeL(RReadStream& aStream);
236 void Set(CSqlSecurityPolicy& aImpl);
237 CSqlSecurityPolicy& Impl() const;
240 CSqlSecurityPolicy* iImpl;
244 A handle to a SQL database.
246 A RSqlDatabase object is, in effect, a handle to the SQL database. A client can:
247 - create a SQL database by calling RSqlDatabase::Create().
248 - open an existing SQL database by calling RSqlDatabase::Open().
249 - close a SQL database by calling RSqlDatabase::Close().
250 - copy a SQL database by calling RSqlDatabase::Copy().
251 - delete a SQL database by calling RSqlDatabase::Delete().
252 - attach a SQL database to current database connection by calling RSqlDatabase::Attach().
253 - detach a SQL database from current database connection by calling RSqlDatabase::Detach().
255 The RSqlDatabase handles are not thread-safe.
257 A client can create either a non-secure database or a secure database,
258 depending on the variant of RSqlDatabase::Create() that is used.
259 - a non-secure database is created if the RSqlDatabase::Create(const TDesC&) variant is used.
260 - a secure database is created if the RSqlDatabase::Create(const TDesC&, const RSqlSecurityPolicy&)
261 variant is used. In this case, a container containing a collection of security
262 policies needs to be set up first and passed to this Create() function.
263 See references to RSqlSecurityPolicy for more information on security policies.
265 A client can also specify how it wants a transaction to interact with
266 other transactions that may be running concurrently. The various ways in which
267 transactions can interact (i.e. how one transaction can affect another) are
268 referred to as "transaction isolation levels", and are defined by the values
269 of the TIsolationLevel enum. A client specifies this by calling RSqlDatabase::SetIsolationLevel().
271 Each of the various flavours of Open and Create allows the optional provision of a
272 configuration string. It is acceptable for this string to be missing.
273 In the case where the string is missing, the config in the SqlServer.sql file
274 will be used. If that does not exist then the MMH macro definitions will be used.
276 The config string is in the format PARAM=VALUE; PARAM=VALUE;...
278 Allowed parameters are:
283 Badly formed config strings are reported as KErrArgument
285 The string may not exceed 255 characters.
287 Please note that a database can only be accessed within the thread where it has been created. It is then not possible
288 to create a database from thread1 and access it from thread2.
290 A client calls RSqlDatabase::Exec() to execute SQL statements.
291 @see RSqlDatabase::Create()
292 @see RSqlDatabase::Open()
293 @see RSqlDatabase::Close()
294 @see RSqlDatabase::Copy()
295 @see RSqlDatabase::Delete()
296 @see RSqlDatabase::Attach()
297 @see RSqlDatabase::Detach()
298 @see RSqlDatabase::SetIsolationLevel()
299 @see RSqlDatabase::Exec()
301 @see RSqlSecurityPolicy
308 friend class RSqlStatement;
309 friend class TSqlScalarFullSelectQuery;
310 friend class RSqlBlob;
311 friend class RSqlBlobReadStream;
312 friend class RSqlBlobWriteStream;
313 friend class TSqlResourceProfiler;
317 Defines a set of values that represents the transaction isolation level.
319 A transaction isolation level defines the way in which a transaction
320 interacts with other transactions that may be in progress concurrently.
322 A client sets the transaction isolation level by calling SetIsolationLevel()
324 @see RSqlDatabase::SetIsolationLevel()
329 A transaction can read uncommitted data, i.e. data that is being changed
330 by another transaction, which is still in progress.
333 - a 'database read' transaction will not block 'database write' transactions
334 being performed by different database connections on the same shared database.
335 - a 'database read' transaction will not be blocked by 'database write'
336 transactions performed by the same database connection.
337 - concurrent 'database write' transactions are prevented.
339 This transaction isolation level can be set at any time during
340 the lifetime of the database.
343 @see RSqlDatabase::SetIsolationLevel()
348 Not currently supported.
350 A transaction cannot read uncommitted data. "Dirty reads" are prevented.
352 "Dirty read" is a data inconsistency type which can be described with the following example:
353 - Transaction A updates TableA.Column1 value from 1 to 2;
354 - Transaction B reads TableA.Column1 value;
355 - Transaction A rolls back and restores the original value of TableA.Column1 (1);
356 - Transaction B ends showing that TableA.Column1 value is 2, even though, logically and transactionally,
357 this data never really even existed in the database because Transaction A never committed that change
361 @see RSqlDatabase::SetIsolationLevel()
366 Not currently supported.
368 A transaction cannot change data that is being read by a different transaction.
369 "Dirty reads" and "non-repeatable reads" are prevented.
371 "Non-repeatable reads" is a data inconsistency type which can be described with the following example:
372 - Transaction A reads TableA.Column1 value which is 1;
373 - Transaction B updates TableA.Column1 value from 1 to 2;
374 - Transaction B commits the chages;
375 - Transaction A reads TableA.Column1 value again. Transaction A has inconsistent data because TableA.Column1
376 value now is 2 instead of 1, all within the scope of the same Transaction A;
379 @see RSqlDatabase::SetIsolationLevel()
384 Any number of 'database read' transactions can be performed concurrently
385 by different database connections on the same shared database.
387 Only one 'database write' transaction can be performed at any one time. If a
388 'database write' transaction is in progress, then any attempt to start
389 another 'database read' or 'database write' transaction will be blocked
390 until the first 'database write' transaction has completed.
392 This is the default isolation level, if no isolation level is
395 "Dirty reads", "non-repeatable" reads and "phantom reads" are prevented.
397 "Phantom reads" is a data inconsistency type which can be described with the following example:
398 - Transaction A reads all rows that have Column1 = 1;
399 - Transaction B inserts a new row which has Column1 = 1;
400 - Transaction B commits;
401 - Transaction A updates all rows that have Column1 = 1. This will also update the row that
402 Transaction B inserted, because Transaction A must read the data again in order to update it.
403 - Transaction A commits;
406 @see RSqlDatabase::SetIsolationLevel()
411 This structure is used for retrieving the database size and database free space.
412 @see RSqlDatabase::Size(TSize&)
416 /** The database size in bytes*/
418 /** The database free space in bytes*/
422 /** If this value is used as an argument of RSqlDatabase::Compact() (aSize argument), then all free space will be removed */
423 enum {EMaxCompaction = -1};
425 IMPORT_C RSqlDatabase();
427 IMPORT_C TInt Create(const TDesC& aDbFileName, const TDesC8* aConfig=NULL);
428 IMPORT_C TInt Create(const TDesC& aDbFileName,
429 const RSqlSecurityPolicy& aSecurityPolicy, const TDesC8* aConfig=NULL);
430 IMPORT_C TInt Open(const TDesC& aDbFileName, const TDesC8* aConfig=NULL);
431 IMPORT_C void CreateL(const TDesC& aDbFileName, const TDesC8* aConfig=NULL);
432 IMPORT_C void CreateL(const TDesC& aDbFileName,
433 const RSqlSecurityPolicy& aSecurityPolicy, const TDesC8* aConfig=NULL);
434 IMPORT_C void OpenL(const TDesC& aDbFileName, const TDesC8* aConfig=NULL);
436 IMPORT_C void Close();
438 IMPORT_C TInt Attach(const TDesC& aDbFileName, const TDesC& aDbName);
439 IMPORT_C TInt Detach(const TDesC& aDbName);
441 IMPORT_C static TInt Copy(const TDesC& aSrcDbFileName, const TDesC& aDestDbFileName);
442 IMPORT_C static TInt Delete(const TDesC& aDbFileName);
444 IMPORT_C TInt GetSecurityPolicy(RSqlSecurityPolicy& aSecurityPolicy) const;
445 IMPORT_C void GetSecurityPolicyL(RSqlSecurityPolicy& aSecurityPolicy) const;
447 IMPORT_C TInt SetIsolationLevel(TIsolationLevel aIsolationLevel);
449 IMPORT_C TInt Exec(const TDesC& aSqlStmt);
450 IMPORT_C TInt Exec(const TDesC8& aSqlStmt);
452 IMPORT_C void Exec(const TDesC& aSqlStmt, TRequestStatus& aStatus);
453 IMPORT_C void Exec(const TDesC8& aSqlStmt, TRequestStatus& aStatus);
455 IMPORT_C TPtrC LastErrorMessage() const;
456 IMPORT_C TInt64 LastInsertedRowId() const;
458 IMPORT_C TBool InTransaction() const;
459 IMPORT_C TInt Size() const;
460 IMPORT_C TInt Size(TSize& aSize, const TDesC& aDbName = KNullDesC) const;
462 IMPORT_C TInt Compact(TInt64 aSize, const TDesC& aDbName = KNullDesC);
463 IMPORT_C void Compact(TInt64 aSize, TRequestStatus& aStatus, const TDesC& aDbName = KNullDesC);
465 IMPORT_C TInt ReserveDriveSpace(TInt aSize);
466 IMPORT_C void FreeReservedSpace();
467 IMPORT_C TInt GetReserveAccess();
468 IMPORT_C void ReleaseReserveAccess();
471 CSqlDatabaseImpl& Impl() const;
474 CSqlDatabaseImpl* iImpl;
478 TSqlScalarFullSelectQuery interface is used for executing SELECT sql queries, which
479 return a single row consisting of a single column value.
483 CASE 1 - retrieving records count of a table:
486 //initialize db object....
488 TSqlScalarFullSelectQuery fullSelectQuery(db);
489 TInt recCnt = fullSelectQuery.SelectIntL(_L("SELECT COUNT(*) FROM PersonTbl"));
492 CASE 2 - retrieving specific column value using a condition in the SELECT statement:
495 //initialize db object....
497 TSqlScalarFullSelectQuery fullSelectQuery(db);
498 TInt personId = fullSelectQuery.SelectIntL(_L("SELECT ID FROM PersonTbl WHERE Name = 'John'"));
501 CASE 3 - retrieving a text column value, the receiving buffer is not big enough:
504 //initialize db object....
506 TSqlScalarFullSelectQuery fullSelectQuery(db);
507 HBufC* buf = HBufC::NewLC(20);
508 TPtr name = buf->Des();
509 TInt rc = fullSelectQuery.SelectTextL(_L("SELECT Name FROM PersonTbl WHERE Id = 1"), name);
510 TEST(rc >= 0); //the function may return only non-negative values
513 buf = buf->ReAllocL(rc);
515 CleanupStack::PushL(buf);
516 name.Set(buf->Des());
517 rc = fullSelectQuery.SelectTextL(_L("SELECT Name FROM PersonTbl WHERE Id = 1"), name);
520 CleanupStack::PopAndDestroy();//buf
528 class TSqlScalarFullSelectQuery
531 IMPORT_C TSqlScalarFullSelectQuery();
532 IMPORT_C TSqlScalarFullSelectQuery(RSqlDatabase& aDatabase);
533 IMPORT_C void SetDatabase(RSqlDatabase& aDatabase);
535 IMPORT_C TInt SelectIntL(const TDesC& aSqlStmt);
536 IMPORT_C TInt64 SelectInt64L(const TDesC& aSqlStmt);
537 IMPORT_C TReal SelectRealL(const TDesC& aSqlStmt);
538 IMPORT_C TInt SelectTextL(const TDesC& aSqlStmt, TDes& aDest);
539 IMPORT_C TInt SelectBinaryL(const TDesC& aSqlStmt, TDes8& aDest);
541 IMPORT_C TInt SelectIntL(const TDesC8& aSqlStmt);
542 IMPORT_C TInt64 SelectInt64L(const TDesC8& aSqlStmt);
543 IMPORT_C TReal SelectRealL(const TDesC8& aSqlStmt);
544 IMPORT_C TInt SelectTextL(const TDesC8& aSqlStmt, TDes& aDest);
545 IMPORT_C TInt SelectBinaryL(const TDesC8& aSqlStmt, TDes8& aDest);
548 inline CSqlDatabaseImpl& Impl() const;
551 CSqlDatabaseImpl* iDatabaseImpl;
555 An enumeration whose values represent the supported database column types.
558 @see RSqlStatement::ColumnType()
571 32-bit integer column value.
576 64-bit integer column value.
581 64-bit floating point column value.
586 Unicode text, a sequence of 16-bit character codes.
591 Binary data, a sequence of bytes.
597 Represents an SQL statement.
599 An object of this type can be used to execute all types of SQL statements; this
600 includes SQL statements with parameters.
602 If a SELECT statament is passed to RSqlStatement::Prepare(), then the returned record set
603 is forward only, non-updateable.
605 There are a number of ways that this object is used; here are some examples.
607 CASE 1 - the execution of a SQL statement, which does not return record set:
610 RSqlDatabase database;
613 TInt err = stmt.Prepare(database, _L("INSERT INTO Tbl1(Fld1) VALUES(:Val)"));
614 TInt paramIndex = stmt.ParameterIndex(_L(":Val"));
615 for(TInt i=1;i<=10;++i)
617 err = stmt.BindInt(paramIndex, i);
624 The following pseudo code shows the general pattern:
627 <RSqlStatement::Prepare()>
629 <RSqlStatement::Bind<param_type>()>
630 <RSqlStatement::Exec()>
631 [<RSqlStatement::Reset()>]
632 [<RSqlStatement::Bind<param_type>()>]
636 CASE 2 - the execution of a SQL statement, which returns a record set:
639 RSqlDatabase database;
642 TInt err = stmt.Prepare(database, _L("SELECT Fld1 FROM Tbl1 WHERE Fld1 > :Val"));
643 TInt paramIndex = stmt.ParameterIndex(_L(":Val"));
644 err = stmt.BindInt(paramIndex, 5);
645 TInt columnIndex = stmt.ColumnIndex(_L("Fld1"));
646 while((err = stmt.Next()) == KSqlAtRow)
648 TInt val = stmt.ColumnInt(columnIndex);
649 RDebug::Print(_L("val=%d\n"), val);
652 <OK - no more records>;
658 The following pseudo code shows the general pattern:
661 <RSqlStatement::Prepare()>
663 <while (RSqlStatement::Next() == KSqlAtRow)>
664 <do something with the records>
666 <OK - no more records>;
669 [<RSqlStatement::Reset()>]
670 [<RSqlStatement::Bind<param_type>()>]
674 CASE 3.1 - SELECT statements: large column data processing, where the data is
675 copied into a buffer supplied by the client:
678 RSqlDatabase database;
681 TInt err = stmt.Prepare(database, _L("SELECT BinaryField FROM Tbl1"));
682 TInt columnIndex = stmt.ColumnIndex(_L("BinaryField"));
683 while((err = stmt.Next()) == KSqlAtRow)
685 TInt size = stmt. ColumnSize(columnIndex);
686 HBufC8* buf = HBufC8::NewL(size);
687 err = stmt.ColumnBinary(columnIndex, buf->Ptr());
688 <do something with the data>;
692 <OK - no more records>;
698 CASE 3.2 - SELECT statements: large column data processing, where the data is
699 accessed by the client without copying:
702 RSqlDatabase database;
705 TInt err = stmt.Prepare(database, _L("SELECT BinaryField FROM Tbl1"));
706 TInt columnIndex = stmt.ColumnIndex(_L("BinaryField"));
707 while((err = stmt.Next()) == KSqlAtRow)
709 TPtrC8 data = stmt.ColumnBinaryL(columnIndex);
710 <do something with the data>;
713 <OK - no more records>;
719 CASE 3.3 - SELECT statements, large column data processing (the data is accessed by
720 the client without copying), leaving-safe processing:
723 RSqlDatabase database;
726 TInt err = stmt.Prepare(database, _L("SELECT BinaryField FROM Tbl1"));
727 TInt columnIndex = stmt.ColumnIndex(_L("BinaryField"));
728 while((err = stmt.Next()) == KSqlAtRow)
731 TInt err = stmt.ColumnBinary(columnIndex, data);
734 <do something with the data>;
738 <OK - no more records>;
744 CASE 3.4 - SELECT statements: large column data processing, where the data is
745 accessed by the client using a stream:
748 RSqlDatabase database;
751 TInt err = stmt.Prepare(database, _L("SELECT BinaryField FROM Tbl1"));
752 TInt columnIndex = stmt.ColumnIndex(_L("BinaryField"));
753 while((err = stmt.Next()) == KSqlAtRow)
755 RSqlColumnReadStream stream;
756 err = stream.ColumnBinary(stmt, columnIndex);
757 <do something with the data in the stream>;
761 <OK - no more records>;
767 CASE 4 - the execution of a SQL statement with parameter(s), some of which may
768 be large text or binary values:
771 RSqlDatabase database;
775 stmt.Prepare(database, _L("UPDATE Tbl1 SET LargeTextField = :LargeTextVal WHERE IdxField = :KeyVal"));
776 TInt paramIndex1 = stmt.ParameterIndex(_L(":LargeTextVal"));
777 TInt paramIndex2 = stmt.ParameterIndex(_L(":KeyVal"));
778 for(TInt i=1;i<=10;++i)
780 RSqlParamWriteStream stream;
781 err = stream.BindText(stmt, paramIndex1);
782 <insert large text data into the stream>;
784 err = stmt.BindInt(paramIndex2, i);
791 The following table shows what is returned when the caller uses a specific
792 column data retrieving function on a specific column type.
795 --------------------------------------------------------------------------------
796 Column type | ColumnInt() ColumnInt64() ColumnReal() ColumnText() ColumnBinary()
797 --------------------------------------------------------------------------------
798 Null........|.0...........0.............0.0..........KNullDesC....KNullDesC8
799 Int.........|.Int.........Int64.........Real.........KNullDesC....KNullDesC8
800 Int64.......|.clamp.......Int64.........Real.........KNullDesC....KNullDesC8
801 Real........|.round.......round.........Real.........KNullDesC....KNullDesC8
802 Text........|.0...........0.............0.0..........Text.........KNullDesC8
803 Binary......|.0...........0.............0.0..........KNullDesC....Binary
804 --------------------------------------------------------------------------------
806 Note the following definitions:
807 - "clamp": return KMinTInt or KMaxTInt if the value is outside the range that can be
808 represented by the type returned by the accessor function.
809 - "round": the floating point value will be rounded up to the nearest integer.
810 If the result is outside the range that can be represented by the type returned
811 by the accessor function, then it will be clamped.
813 Note that when handling blob and text data over 2Mb in size it is recommended that the
814 RSqlBlobReadStream and RSqlBlobWriteStream classes or the TSqlBlob class is used instead.
815 These classes provide a more RAM-efficient way of reading and writing large amounts of
816 blob or text data from a database.
822 @see RSqlBlobReadStream
823 @see RSqlBlobWriteStream
831 friend class RSqlColumnReadStream;
832 friend class RSqlParamWriteStream;
835 IMPORT_C RSqlStatement();
836 IMPORT_C TInt Prepare(RSqlDatabase& aDatabase, const TDesC& aSqlStmt);
837 IMPORT_C TInt Prepare(RSqlDatabase& aDatabase, const TDesC8& aSqlStmt);
838 IMPORT_C void PrepareL(RSqlDatabase& aDatabase, const TDesC& aSqlStmt);
839 IMPORT_C void PrepareL(RSqlDatabase& aDatabase, const TDesC8& aSqlStmt);
840 IMPORT_C void Close();
841 IMPORT_C TBool AtRow() const;
842 IMPORT_C TInt Reset();
843 IMPORT_C TInt Exec();
844 IMPORT_C void Exec(TRequestStatus& aStatus);
845 IMPORT_C TInt Next();
847 IMPORT_C TInt ParameterIndex(const TDesC& aParameterName) const;
848 IMPORT_C TInt ColumnCount() const;
849 IMPORT_C TInt ColumnIndex(const TDesC& aColumnName) const;
850 IMPORT_C TSqlColumnType ColumnType(TInt aColumnIndex) const;
851 IMPORT_C TInt DeclaredColumnType(TInt aColumnIndex, TSqlColumnType& aColumnType) const;
852 IMPORT_C TInt ColumnSize(TInt aColumnIndex) const;
854 IMPORT_C TInt BindNull(TInt aParameterIndex);
855 IMPORT_C TInt BindInt(TInt aParameterIndex, TInt aParameterValue);
856 IMPORT_C TInt BindInt64(TInt aParameterIndex, TInt64 aParameterValue);
857 IMPORT_C TInt BindReal(TInt aParameterIndex, TReal aParameterValue);
858 IMPORT_C TInt BindText(TInt aParameterIndex, const TDesC& aParameterText);
859 IMPORT_C TInt BindBinary(TInt aParameterIndex, const TDesC8& aParameterData);
860 IMPORT_C TInt BindZeroBlob(TInt aParameterIndex, TInt aBlobSize);
862 IMPORT_C TBool IsNull(TInt aColumnIndex) const;
863 IMPORT_C TInt ColumnInt(TInt aColumnIndex) const;
864 IMPORT_C TInt64 ColumnInt64(TInt aColumnIndex) const;
865 IMPORT_C TReal ColumnReal(TInt aColumnIndex) const;
867 IMPORT_C TPtrC ColumnTextL(TInt aColumnIndex) const;
868 IMPORT_C TInt ColumnText(TInt aColumnIndex, TPtrC& aPtr) const;
869 IMPORT_C TInt ColumnText(TInt aColumnIndex, TDes& aDest) const;
871 IMPORT_C TPtrC8 ColumnBinaryL(TInt aColumnIndex) const;
872 IMPORT_C TInt ColumnBinary(TInt aColumnIndex, TPtrC8& aPtr) const;
873 IMPORT_C TInt ColumnBinary(TInt aColumnIndex, TDes8& aDest) const;
875 IMPORT_C TInt ColumnName(TInt aColumnIndex, TPtrC& aNameDest);
876 IMPORT_C TInt ParameterName(TInt aParameterIndex, TPtrC& aNameDest);
877 IMPORT_C TInt ParamName(TInt aParameterIndex, TPtrC& aNameDest);
879 CSqlStatementImpl& Impl() const;
882 CSqlStatementImpl* iImpl;
887 The read stream interface.
889 The class is used for reading the content of a column containing either
890 binary data or text data.
892 The class derives from RReadStream, which means that all RReadStream public
893 member functions and predefined stream operators \>\> can be used to deal
896 If the blob or text data is over 2Mb in size then it is recommended that the
897 RSqlBlobReadStream or TSqlBlob class is used instead. These classes provide
898 a more RAM-efficient way of reading large amounts of blob or text data from
901 The following two cases are typical:
903 CASE 1 - processing large binary column data.
907 <open/create "db" object>;
909 <prepare "stmt" object>;
910 TInt rc = stmt.Next();
913 RSqlColumnReadStream colStream;
914 CleanupClosePushL(colStream);
915 User::LeaveIfError(colStream.ColumnBinary(stmt, <column_number>));
916 TInt size = stmt.ColumnSize(<column_number>);
917 //read the column data in a buffer ("buf" variable).
918 //(or the column data can be retrieved in a smaller portions)
919 colStream.ReadL(buf, size);
921 CleanupStack::PopAndDestroy(&colStream);
929 CASE 2 - processing large text column data.
933 <open/create "db" object>;
935 <prepare "stmt" object>;
936 TInt rc = stmt.Next();
939 RSqlColumnReadStream colStream;
940 CleanupClosePushL(colStream);
941 User::LeaveIfError(colStream.ColumnText(stmt, <column_number>));
942 TInt size = stmt.ColumnSize(<column_number>);
943 //read the column data in a buffer ("buf" variable).
944 //(or the column data can be retrieved in a smaller portions)
945 colStream.ReadL(buf, size);
947 CleanupStack::PopAndDestroy(&colStream);
955 @see RSqlBlobReadStream
961 class RSqlColumnReadStream : public RReadStream
964 IMPORT_C TInt ColumnText(RSqlStatement& aStmt, TInt aColumnIndex);
965 IMPORT_C TInt ColumnBinary(RSqlStatement& aStmt, TInt aColumnIndex);
966 IMPORT_C void ColumnTextL(RSqlStatement& aStmt, TInt aColumnIndex);
967 IMPORT_C void ColumnBinaryL(RSqlStatement& aStmt, TInt aColumnIndex);
972 The write stream interface.
974 The class is used to set binary data or text data into a parameter.
975 This is a also known as binding a parameter.
977 The class derives from RWriteStream, which means that all RWriteStream public
978 member functions and predefined stream operators \<\< can be used to deal with
981 If the blob or text data is over 2Mb in size then it is recommended that the
982 RSqlBlobWriteStream or TSqlBlob class is used instead. These classes provide
983 a more RAM-efficient way of writing large amounts of blob or text data to
986 The following two cases are typical:
988 CASE 1 - binding a large binary parameter.
992 <open/create "db" object>;
994 <prepare "stmt" object>;//The SQL statement references large binary parameter
995 RSqlParamWriteStream paramStream;
996 CleanupClosePushL(paramStream);
997 User::LeaveIfError(paramStream.BindBinary(stmt, <parameter_number>));
998 //Write out the parameter data
999 paramStream.WriteL(..);
1000 paramStream << <data>;
1003 paramStream.CommitL();
1004 //Continue with the statement processing issuing Next() or Exec().
1005 TInt rc = stmt.Next();//rc = stmt.Exec()
1007 CleanupStack::PopAndDestroy(¶mStream);
1010 CASE 2 - binding a large text parameter.
1014 <open/create "db" object>;
1016 <prepare "stmt" object>;//The SQL statement references large text parameter
1017 RSqlParamWriteStream paramStream;
1018 CleanupClosePushL(paramStream);
1019 User::LeaveIfError(paramStream.BindText(stmt, <parameter_number>));
1020 //Write out the parameter data
1021 paramStream.WriteL(..);
1022 paramStream << <data>;
1025 paramStream.CommitL();
1026 //Continue with the statement processing issuing Next() or Exec().
1027 TInt rc = stmt.Next();//rc = stmt.Exec()
1029 CleanupStack::PopAndDestroy(¶mStream);
1032 @see RSqlBlobWriteStream
1038 class RSqlParamWriteStream : public RWriteStream
1041 IMPORT_C TInt BindText(RSqlStatement& aStmt, TInt aParameterIndex);
1042 IMPORT_C TInt BindBinary(RSqlStatement& aStmt, TInt aParameterIndex);
1043 IMPORT_C void BindTextL(RSqlStatement& aStmt, TInt aParameterIndex);
1044 IMPORT_C void BindBinaryL(RSqlStatement& aStmt, TInt aParameterIndex);
1049 A direct handle to a blob, used for reading the content of the blob via a streaming interface.
1051 The target blob is identified using the relevant database connection, table name,
1052 column name and ROWID of the record to which the blob belongs (also the attached
1053 database name if the blob is contained in an attached database).
1055 A blob in this context refers to the content of a BLOB or TEXT column,
1056 and a read handle can be opened on both types of column.
1057 For TEXT columns it is important to note that no conversions are performed on
1058 data retrieved using this class - the data is returned as a stream of bytes.
1060 The class derives from RReadStream and provides all of its streaming methods.
1061 The SizeL() method can be used to check the total size of the blob, in bytes.
1063 It is strongly recommended to use this class for reading the content of large blobs
1064 because it significantly reduces the amount of RAM that is used when compared to using the
1065 RSqlColumnReadStream, RSqlStatement::ColumnBinary(L) or RSqlStatement::ColumnText(L) APIs.
1067 Specifically, it is recommended to use this class for blobs over 2Mb in size.
1068 Indeed, in some circumstances where very large blobs are in use it may be impossible
1069 to read the blob content using the legacy APIs (due to the server's finite RAM capacity),
1070 and this class may provide the only way to access the data.
1072 The following code illustrates typical use cases of this class:
1074 CASE 1 - reading large blob data from the last inserted record.
1078 CleanupClosePushL(db);
1079 <open/create "db" object>;
1080 RSqlBlobReadStream rdStrm;
1081 CleanupClosePushL(rdStrm);
1082 rdStrm.OpenL(db, <table_name>, <column_name>);
1083 HBufC8* buffer = HBufC8::NewLC(KBlockSize);
1084 TPtr8 bufPtr(buffer->Des());
1085 TInt size = rdStrm.SizeL();
1088 TInt bytesToRead = (size >= KBlockSize) ? KBlockSize : size ;
1089 rdStrm.ReadL(bufPtr, bytesToRead); // read the next block of data
1090 <do something with the block of data>
1091 size =- bytesToRead;
1093 CleanupStack::PopAndDestroy(3); // buffer, rdStrm, db
1096 CASE 2 - reading large blob data from a selection of records.
1100 CleanupClosePushL(db);
1101 <open/create "db" object>;
1103 CleanupClosePushL(stmt);
1104 <prepare "stmt" object to SELECT the ROWIDs of a collection of blob objects>;
1106 while((rc = stmt.Next()) == KSqlAtRow)
1108 TInt64 rowid = stmt.ColumnInt64(0);
1109 RSqlBlobReadStream rdStrm;
1110 CleanupClosePushL(rdStrm);
1111 rdStrm.OpenL(db, <table_name>, <column_name>, rowid);
1113 HBufC8* buffer = HBufC8::NewLC(KBlockSize);
1114 TPtr8 bufPtr(buffer->Des());
1115 TInt size = rdStrm.SizeL();
1118 TInt bytesToRead = (size >= KBlockSize) ? KBlockSize : size ;
1119 rdStrm.ReadL(bufPtr, bytesToRead); // read the next block of data
1120 <do something with the block of data>
1121 size =- bytesToRead;
1123 CleanupStack::PopAndDestroy(2); // buffer, rdStrm
1125 CleanupStack::PopAndDestroy(2); // stmt, db
1128 @see RSqlBlobWriteStream
1129 @see RSqlDatabase::LastInsertedRowId()
1134 class RSqlBlobReadStream : public RReadStream
1137 IMPORT_C void OpenL(RSqlDatabase& aDb, const TDesC& aTableName, const TDesC& aColumnName,
1138 TInt64 aRowId = KSqlLastInsertedRowId, const TDesC& aDbName = KNullDesC);
1139 IMPORT_C TInt SizeL();
1143 A direct handle to a blob, used for writing the content of the blob via a streaming interface.
1145 The target blob is identified using the relevant database connection, table name,
1146 column name and ROWID of the record to which the blob belongs (also the attached
1147 database name if the blob is contained in an attached database).
1149 A blob in this context refers to the content of a BLOB or TEXT column,
1150 and a write handle can be opened on both types of column, except if the
1151 column is indexed, in which case the open call will fail with KSqlErrGeneral.
1152 For TEXT columns it is important to note that no conversions are performed on data
1153 that is stored using this class - the data is simply stored as a stream of bytes.
1155 The class derives from RWriteStream and provides all of its streaming methods.
1156 The SizeL() method can be used to check the total size of the blob, in bytes.
1157 Note that this class cannot be used to increase the size of a blob, only to modify
1158 the existing contents of a blob. An attempt to write beyond the end of a blob will
1161 It is strongly recommended to use this class for writing the content of large blobs
1162 because it significantly reduces the amount of RAM that is used when compared to using
1163 the RSqlParamWriteStream, RSqlStatement::BindBinary or RSqlStatement::BindText APIs.
1165 Specifically, it is recommended to use this class for blobs over 2Mb in size.
1166 Indeed, in some circumstances where very large blobs are required it may be impossible
1167 to create a blob or update its content using the legacy APIs (due to the server's finite
1168 RAM capacity), and this class may provide the only way to achieve this.
1170 Using this class in combination with zeroblobs it is possible to create and manipulate
1171 blobs that are gigabytes in size. A zeroblob acts as a place-holder for a blob whose
1172 content is later written using this class and one can be created using an INSERT
1173 statement that either contains the SQLite 'zeroblob()' function or on which
1174 RSqlStatement::BindZeroBlob() has been executed.
1175 Note that a zeroblob should be created in a column after which there are no columns
1176 that contain anything other than zeroblobs or NULLs, otherwise the zeroblob must be
1177 allocated in full in RAM.
1179 When creating a zeroblob it is recommended, where possible, to create the zeroblob and
1180 then write the blob content within the same transaction. Otherwise the zeroblob will
1181 have to be journalled before being written to.
1183 It is also strongly recommended to execute calls to WriteL() within a transaction.
1184 If a leave occurs during a call to WriteL() then the current state of the blob object is
1185 undefined and a ROLLBACK should be executed to return the blob object to its previous state.
1186 Note that in order for a ROLLBACK to execute successfully all open RSqlBlobReadStream
1187 and RSqlBlobWriteStream handles and all open RSqlStatement objects must be closed
1188 before the ROLLBACK is executed.
1190 The following code illustrates typical use cases of this class:
1192 CASE 1 - creating a 5Mb blob.
1196 CleanupClosePushL(db);
1197 <open/create "db" object>;
1198 CleanupStack::PushL(TCleanupItem(&DoRollback, &db)); // rollback function
1199 TInt err = db.Exec(_L("BEGIN"));
1201 err = db.Exec(_L("INSERT INTO table1 VALUES(35, zeroblob(5242880))"));
1203 RSqlBlobWriteStream wrStrm;
1204 CleanupClosePushL(wrStrm);
1205 wrStrm.OpenL(db, <table_name>, <column_name>);
1206 TInt size = wrStrm.SizeL();
1209 TInt bytesToWrite = (size >= KBlockSize) ? KBlockSize : size ;
1210 <fill a buffer 'buf' with this amount of the blob data>
1211 wrStrm.WriteL(buf); // write the next block of data
1212 size =- bytesToWrite;
1214 CleanupStack::PopAndDestroy(&wrStrm);
1215 CleanupStack::Pop(); // TCleanupItem
1216 err = db.Exec(_L("COMMIT")); // blob data committed to disk
1218 CleanupStack::PopAndDestroy(&db);
1221 CASE 2 - updating a large blob in the last inserted record.
1225 CleanupClosePushL(db);
1226 <open/create "db" object>;
1227 CleanupStack::PushL(TCleanupItem(&DoRollback, &db)); // rollback function
1228 TInt err = db.Exec(_L("BEGIN"));
1230 RSqlBlobWriteStream wrStrm;
1231 CleanupClosePushL(wrStrm);
1232 wrStrm.OpenL(db, <table_name>, <column_name>);
1233 <fill a buffer 'buf' with the changed blob data>
1234 wrStrm.WriteL(buf); // update the blob
1235 CleanupStack::PopAndDestroy(&wrStrm);
1236 CleanupStack::Pop(); // TCleanupItem
1237 err = db.Exec(_L("COMMIT")); // blob data committed to disk
1239 CleanupStack::PopAndDestroy(&db);
1242 @see RSqlBlobReadStream
1243 @see RSqlDatabase::LastInsertedRowId()
1244 @see RSqlStatement::BindZeroBlob()
1249 class RSqlBlobWriteStream : public RWriteStream
1252 IMPORT_C void OpenL(RSqlDatabase& aDb, const TDesC& aTableName, const TDesC& aColumnName,
1253 TInt64 aRowId = KSqlLastInsertedRowId, const TDesC& aDbName = KNullDesC);
1254 IMPORT_C TInt SizeL();
1258 Utility class that provides methods for reading and writing the entire content of
1259 a blob in a single call.
1261 The target blob is identified using the relevant database connection, table name,
1262 column name and ROWID of the record to which the blob belongs (also the attached
1263 database name if the blob is contained in an attached database).
1265 The behaviour of the RSqlBlobReadStream class and the recommendations for using
1266 it exist for the Get() and GetLC() methods of this class. Similarly, the behaviour
1267 of the RSqlBlobWriteStream class and the recommendations for using it exist for the
1268 SetL() method of this class.
1270 In particular, it is strongly recommended to use this class or the RSqlBlobReadStream
1271 and RSqlBlobWriteStream classes for reading and writing the content of large blobs
1272 because it significantly reduces the amount of RAM that is used when compared to using
1273 the legacy streaming and RSqlStatement APIs.
1275 Specifically, it is recommended to use this class for blobs over 2Mb in size.
1276 Indeed, in some circumstances where very large blobs are in use it may be impossible
1277 to read or write to a blob using the legacy APIs (due to the server's finite
1278 RAM capacity), and this class or the RSqlBlobReadStream and RSqlBlobWriteStream classes
1279 may provide the only way to achieve this.
1281 It is strongly recommended to execute calls to the SetL() method within a transaction.
1282 If a leave occurs during a call to SetL() then the current state of the blob object is
1283 undefined and a ROLLBACK should be executed to return the blob object to its previous state.
1284 Note that in order for a ROLLBACK to execute successfully all open RSqlBlobReadStream
1285 and RSqlBlobWriteStream handles and all open RSqlStatement objects must be closed
1286 before the ROLLBACK is executed.
1288 When using SetL() to update the content of a zeroblob it is recommended, where possible,
1289 to create the zeroblob and then call SetL() within the same transaction.
1290 Otherwise the zeroblob will have to be journalled before being written to.
1292 The following code illustrates typical use cases of this class:
1294 CASE 1 - retrieving the entire content of a large blob.
1298 CleanupClosePushL(db);
1299 <open/create "db" object>;
1300 HBufC8* wholeBlob = TSqlBlob::GetLC(db, <table_name>, <column_name>, <rowid>);
1301 <do something with the blob data>
1302 CleanupStack::PopAndDestroy(2); // wholeBlob, db
1306 CASE 2 - creating a 4Mb blob.
1310 CleanupClosePushL(db);
1311 <open/create "db" object>;
1312 CleanupStack::PushL(TCleanupItem(&DoRollback, &db)); // rollback function
1313 TInt err = db.Exec(_L("BEGIN"));
1315 err = db.Exec(_L("INSERT INTO table1 VALUES(99, zeroblob(4194304))"));
1317 <fill a buffer 'buf' with 4Mb of blob data>
1318 TSqlBlob::SetL(db, <table_name>, <column_name>, buf);
1319 CleanupStack::Pop(); // TCleanupItem
1320 err = db.Exec(_L("COMMIT")); // blob data committed to disk
1322 CleanupStack::PopAndDestroy(&db);
1325 @see RSqlBlobReadStream
1326 @see RSqlBlobWriteStream
1327 @see RSqlDatabase::LastInsertedRowId()
1328 @see RSqlStatement::BindZeroBlob()
1336 IMPORT_C static HBufC8* GetLC(RSqlDatabase& aDb,
1337 const TDesC& aTableName,
1338 const TDesC& aColumnName,
1339 TInt64 aRowId = KSqlLastInsertedRowId,
1340 const TDesC& aDbName = KNullDesC);
1342 IMPORT_C static TInt Get(RSqlDatabase& aDb,
1343 const TDesC& aTableName,
1344 const TDesC& aColumnName,
1346 TInt64 aRowId = KSqlLastInsertedRowId,
1347 const TDesC& aDbName = KNullDesC);
1349 IMPORT_C static void SetL(RSqlDatabase& aDb,
1350 const TDesC& aTableName,
1351 const TDesC& aColumnName,
1352 const TDesC8& aData,
1353 TInt64 aRowId = KSqlLastInsertedRowId,
1354 const TDesC& aDbName = KNullDesC);
1358 Defines a set of categories for the values returned by the SQL API.
1360 A call to an SQL API may complete with a non-zero return code indicating that some
1361 unexpected behaviour has occurred. This can be categorised in a number of ways,
1362 for example, as a Symbian OS error, or as a database error etc.
1364 Callers to the SQL API may not want to be concerned with the detailed meaning of
1365 a specific return code value, and may find it sufficient just to know the category
1368 The category associated with a specific return code can be found by passing the
1369 return code value to the function SqlRetCodeClass().
1374 enum TSqlRetCodeClass
1377 Indicates that a return code is just for information.
1379 This category corresponds to the SQL API return codes: KSqlAtRow and KSqlAtEnd.
1381 @see SqlRetCodeClass()
1382 @see TSqlRetCodeClass
1389 Indicates that a return code represents a database-specific error.
1391 This category corresponds to SQL API return codes in the range KSqlErrGeneral to KSqlErrStmtExpired.
1393 @see SqlRetCodeClass()
1394 @see TSqlRetCodeClass
1396 @see KSqlErrStmtExpired
1401 Indicates that a return code represents a Symbian OS error.
1403 This category corresponds to SQL API return codes in the range KErrPermissionDenied to KErrNone,
1405 @see SqlRetCodeClass()
1406 @see TSqlRetCodeClass
1407 @see KErrPermissionDenied
1414 An information type return code from a call to RSqlStatement::Next().
1416 It means that the RSqlStatement object points to a valid row, and that
1417 the user can access the column data using the appropriate RSqlStatement
1420 @see RSqlStatement::Next()
1422 @see ESqlInformation
1423 @see TSqlRetCodeClass
1428 const TInt KSqlAtRow = 1;
1431 An information type return code from a call to RSqlStatement::Next().
1433 It means that the RSqlStatement object does not point to a valid row,
1434 and that column data accessors cannot be used.
1436 @see RSqlStatement::Next()
1438 @see ESqlInformation
1439 @see TSqlRetCodeClass
1444 const TInt KSqlAtEnd = 2;
1447 An SQL database-specific error type return code from a call to the SQL API.
1449 It indicates a general SQL error or a missing database.
1453 @see TSqlRetCodeClass
1458 const TInt KSqlErrGeneral = -311;
1461 An SQL database-specific error type return code from a call to the SQL API.
1463 It indicates an internal logic error in the SQL database engine, and specifically
1464 that an internal consistency check within the SQL database engine has failed.
1468 @see TSqlRetCodeClass
1473 const TInt KSqlErrInternal = -312;
1476 An SQL database-specific error type return code from a call to the SQL API.
1478 It indicates that access permission has been denied.
1482 @see TSqlRetCodeClass
1487 const TInt KSqlErrPermission = -313;
1490 An SQL database-specific error type return code from a call to the SQL API.
1492 It indicates an internal logic error in the SQL database engine, and specifically
1493 that a callback routine requested an abort.
1498 const TInt KSqlErrAbort = -314;
1501 An SQL database-specific error type return code from a call to the SQL API.
1503 It indicates that the database file is locked.
1507 @see TSqlRetCodeClass
1512 const TInt KSqlErrBusy = -315;
1515 An SQL database-specific error type return code from a call to the SQL API.
1517 It indicates that a table in the database is locked.
1521 @see TSqlRetCodeClass
1526 const TInt KSqlErrLocked = -316;
1529 An SQL database-specific error type return code from a call to the SQL API.
1531 It indicates an attempt to write to a database that is read-only.
1535 @see TSqlRetCodeClass
1540 const TInt KSqlErrReadOnly = -318;
1543 SQL database-specific error type. Operation terminated.
1548 const TInt KSqlErrInterrupt = -319;
1551 An SQL database-specific error type return code from a call to the SQL API.
1553 It indicates that a disk I/O error has occurred.
1557 @see TSqlRetCodeClass
1562 const TInt KSqlErrIO = -320;
1565 An SQL database-specific error type return code from a call to the SQL API.
1567 It indicates that the database disk image is malformed.
1571 @see TSqlRetCodeClass
1576 const TInt KSqlErrCorrupt = -321;
1579 SQL database-specific error type. Table or record not found.
1584 const TInt KSqlErrNotFound = -322;
1587 An SQL database-specific error type return code from a call to the SQL API.
1589 It indicates that an insertion operation has failed because an autoincrement column used up
1590 all awailable rowids.
1594 @see TSqlRetCodeClass
1599 const TInt KSqlErrFull = -323;
1602 An SQL database-specific error type return code from a call to the SQL API.
1604 It indicates a failure to open the database file.
1608 @see TSqlRetCodeClass
1613 const TInt KSqlErrCantOpen = -324;
1616 An SQL database-specific error type return code from a call to the SQL API.
1618 It indicates a database lock protocol error.
1622 @see TSqlRetCodeClass
1627 const TInt KSqlErrProtocol = -325;
1630 An SQL database-specific error type return code from a call to the SQL API.
1632 It indicates that the database is empty.
1636 @see TSqlRetCodeClass
1641 const TInt KSqlErrEmpty = -326;
1644 An SQL database-specific error type return code from a call to the SQL API.
1646 It indicates that a prepared SQL statement is no longer valid
1647 and cannot be executed.
1649 The most common reason for this return code is that the database schema was modified after
1650 the SQL statement was prepared. The SQL statement must be prepared again
1651 using the RSqlStatement::Prepare() member functions.
1653 Another possible reason for this return code is a detached database.
1657 @see TSqlRetCodeClass
1662 const TInt KSqlErrSchema = -327;
1665 SQL database-specific error type. Too much data for one row.
1670 const TInt KSqlErrTooBig = -328;
1673 An SQL database-specific error type return code from a call to the SQL API.
1675 It indicates an abort due to constraint violation.
1677 "Constraint violation" means violation of one or more column constraints ("NOT NULL", "PRIMARY KEY",
1678 "UNIQUE", "CHECK", "DEFAULT", "COLLATE" SQL keywords) or table constraints ("PRIMARY KEY", "UNIQUE",
1679 "CHECK" SQL keywords).
1683 @see TSqlRetCodeClass
1688 const TInt KSqlErrConstraint = -329;
1691 An SQL database-specific error type return code from a call to the SQL API.
1693 It indicates a data type mismatch.
1697 @see TSqlRetCodeClass
1702 const TInt KSqlErrMismatch = -330;
1705 An SQL database-specific error type return code from a call to the SQL API.
1707 It indicates an internal logic error in the SQL database engine.
1711 @see TSqlRetCodeClass
1716 const TInt KSqlErrMisuse = -331;
1719 An SQL database-specific error type return code from a call to the SQL API.
1721 It indicates that a parameter index value is out of range.
1725 @see TSqlRetCodeClass
1730 const TInt KSqlErrRange = -335;
1733 An SQL database-specific error type return code from a call to the SQL API.
1735 It indicates that the file that has been opened is not a database file.
1739 @see TSqlRetCodeClass
1744 const TInt KSqlErrNotDb = -336;
1747 An SQL database-specific error type return code from a call to the SQL API.
1749 It indicates that an SQL statement has expired, and needs to be prepared again.
1753 @see TSqlRetCodeClass
1758 const TInt KSqlErrStmtExpired = -360;
1760 IMPORT_C TSqlRetCodeClass SqlRetCodeClass(TInt aSqlRetCode);
1762 #endif //__SQLDB_H__