os/persistentdata/persistentstorage/sql/INC/SqlDb.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // SQL Client side API header
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20  @publishedAll
    21  @released
    22 */
    23 #ifndef __SQLDB_H__
    24 #define __SQLDB_H__
    25 
    26 #ifndef __S32STD_H__
    27 #include <s32std.h>	//RReadStream, RWriteStream
    28 #endif
    29 
    30 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS 
    31 	#include <sqlresourcetester.h>
    32 #endif
    33 
    34 //Forward declarations
    35 class CSqlSecurityPolicy;
    36 class RSqlDatabase;
    37 class CSqlDatabaseImpl;
    38 class RSqlStatement;
    39 class CSqlStatementImpl;
    40 class RSqlColumnReadStream;
    41 class RSqlParamWriteStream;
    42 class TSqlScalarFullSelectQuery;
    43 class RSqlBlob;
    44 class RSqlBlobReadStream;
    45 class RSqlBlobWriteStream;
    46 class TSqlResourceProfiler;
    47 
    48 /**
    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.
    52 
    53 @see RSqlBlobReadStream
    54 @see RSqlBlobWriteStream
    55 @see TSqlBlob
    56 
    57 @publishedAll
    58 @released
    59 */
    60 const TInt KSqlLastInsertedRowId = -1;
    61 
    62 /**
    63 A container for the security policies for a shared SQL database.
    64 
    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.
    68 
    69 For the database, you use RSqlSecurityPolicy::SetDbPolicy() to apply a separate
    70 security policy to:
    71 - the database schema.
    72 - read activity on the database.
    73 - write activity on the database.
    74 
    75 For database tables, you use RSqlSecurityPolicy::SetPolicy() to apply a separate
    76 security policy to:
    77 - write activity on each named database table.
    78 - read activity on each named database table.
    79 
    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().
    85 
    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
    88 that database.
    89 
    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.
    94 
    95 The following code fragment shows how you do this:
    96    
    97 @code
    98 TSecurityPolicy defaultPolicy;
    99 RSqlSecurityPolicy securityPolicy;
   100 RSqlDatabase database;
   101 TInt err;
   102 
   103 // Create security policies container object using a default security policy.
   104 securityPolicy.Create(defaultPolicy); 
   105 
   106 // Set up policy to apply to database schema
   107 // and assign it
   108 TSecurityPolicy schemaPolicy;
   109 ...
   110 err = securityPolicy.SetDbPolicy(RSqlSecurityPolicy::ESchemaPolicy, schemaPolicy);
   111 
   112 // Set up policy to apply to write activity on the database
   113 // and assign it
   114 TSecurityPolicy writePolicy;
   115 ...
   116 err = securityPolicy.SetDbPolicy(RSqlSecurityPolicy::EWritePolicy, writePolicy);
   117 
   118 // Set up policy to apply to write activity to the database table named "Table1"
   119 // and assign it
   120 TSecurityPolicy tablePolicy1;
   121 ...
   122 err = securityPolicy.SetPolicy(RSqlSecurityPolicy::ETable, _L("Table1"), RSqlSecurityPolicy::EWritePolicy, tablePolicy1);
   123 
   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);
   127 
   128 // Create the database, passing the security policies
   129 err = database.Create(KDatabaseName, securityPolicy);
   130 
   131 // We can close the RSqlSecurityPolicy object.
   132 securityPolicy.Close();
   133 @endcode
   134 
   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.
   140 
   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:
   146 
   147 @code
   148 RSqlDatabase database;
   149 RSqlSecurityPolicy securityPolicy;
   150 
   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);
   155 ...
   156 // This is the security policy that applies to database schema
   157 TSecurityPolicy schemaPolicy = securityPolicy.DbPolicy(RSqlSecurityPolicy::ESchemaPolicy);
   158 ...
   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);
   162 ...
   163 // Close the RSqlSecurityPolicy object when no longer needed.
   164 securityPolicy.Close();
   165 @endcode
   166 
   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.
   169 
   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.
   173 
   174 @see TSecurityPolicy
   175 @see RSqlDatabase
   176 @see RSqlSecurityPolicy::SetDbPolicy()
   177 @see RSqlSecurityPolicy::SetPolicy()
   178 
   179 @publishedAll
   180 @released
   181 */
   182 class RSqlSecurityPolicy
   183 	{
   184 	friend class RSqlDatabase;
   185 	
   186 public:
   187 	/**
   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.
   192 	@see TSecurityPolicy
   193 	*/
   194 	enum TPolicyType 
   195 		{
   196 		/**
   197 		Schema database security policy. An application with schema database security policy can 
   198 		modify the database schema, write to database, read from database.
   199 		*/
   200 		ESchemaPolicy, 
   201 		/**
   202 		Read database security policy. An application with read database security policy can 
   203 		read from database.
   204 		*/
   205 		EReadPolicy, 
   206 		/**
   207 		Write database security policy. An application with write database security policy can 
   208 		write to database.
   209 		*/
   210 		EWritePolicy
   211 		};
   212 	/**
   213 	Not currently supported.
   214 
   215 	Defines a set of values that represents the database objects which can be protected by 
   216 	database security policy types.
   217 	*/
   218 	enum TObjectType 
   219 		{
   220 		ETable
   221 		};
   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;
   231 	
   232 	IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
   233 	IMPORT_C void InternalizeL(RReadStream& aStream);
   234 		
   235 private:	
   236 	void Set(CSqlSecurityPolicy& aImpl);
   237 	CSqlSecurityPolicy& Impl() const;
   238 					
   239 private:
   240 	CSqlSecurityPolicy* iImpl;
   241 	};
   242 	
   243 /**
   244 A handle to a SQL database.
   245 
   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().
   254 
   255 The RSqlDatabase handles are not thread-safe.
   256 
   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.
   264 
   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().
   270 
   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.
   275 
   276 The config string is in the format PARAM=VALUE; PARAM=VALUE;...
   277 
   278 Allowed parameters are:
   279 	cache_size=nnnn
   280 	page_size=nnnn
   281 	encoding=UTF8|UTF16
   282 
   283 Badly formed config strings are reported as KErrArgument
   284 
   285 The string may not exceed 255 characters.
   286 
   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.
   289 
   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()
   300 @see TIsolationLevel
   301 @see RSqlSecurityPolicy
   302 
   303 @publishedAll
   304 @released
   305 */
   306 class RSqlDatabase
   307 	{
   308 	friend class RSqlStatement;
   309 	friend class TSqlScalarFullSelectQuery;
   310 	friend class RSqlBlob;
   311 	friend class RSqlBlobReadStream;
   312 	friend class RSqlBlobWriteStream;
   313 	friend class TSqlResourceProfiler;
   314 	
   315 public:
   316 	/**
   317 	Defines a set of values that represents the transaction isolation level.
   318 	
   319 	A transaction isolation level defines the way in which a transaction
   320 	interacts with other transactions that may be in progress concurrently.
   321 	
   322 	A client sets the transaction isolation level by calling SetIsolationLevel()
   323 	
   324 	@see RSqlDatabase::SetIsolationLevel()
   325 	*/
   326 	enum TIsolationLevel 
   327 		{
   328 		/**
   329 		A transaction can read uncommitted data, i.e. data that is being changed
   330 		by another transaction, which is still in progress.
   331 		
   332 		This means that
   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.
   338 		
   339 		This transaction isolation level can be set at any time during
   340 		the lifetime of the database.
   341 		
   342 		@see TIsolationLevel
   343 		@see RSqlDatabase::SetIsolationLevel()
   344 		*/
   345 		EReadUncommitted, 
   346 
   347 		/**
   348 		Not currently supported.
   349 		
   350 		A transaction cannot read uncommitted data. "Dirty reads" are prevented.
   351 		
   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 
   358 		  to the database;
   359 		
   360 		@see TIsolationLevel
   361 		@see RSqlDatabase::SetIsolationLevel()
   362 		*/
   363 		EReadCommitted, 
   364 		
   365 		/**
   366 		Not currently supported.
   367 		
   368 		A transaction cannot change data that is being read by a different transaction. 
   369 		"Dirty reads" and "non-repeatable reads" are prevented.
   370 
   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;
   377 		
   378 		@see TIsolationLevel
   379 		@see RSqlDatabase::SetIsolationLevel()
   380 		*/
   381 		ERepeatableRead, 
   382 		
   383 		/**
   384 		Any number of 'database read' transactions can be performed concurrently
   385 		by different database connections on the same shared database.
   386 		
   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.
   391 		
   392 		This is the default isolation level, if no isolation level is
   393 		explicitly set.
   394 		
   395 		"Dirty reads", "non-repeatable" reads and "phantom reads" are prevented.
   396 		
   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;
   404 		
   405 		@see TIsolationLevel
   406 		@see RSqlDatabase::SetIsolationLevel()
   407 		*/
   408 		ESerializable
   409 		};
   410 	/**
   411 	This structure is used for retrieving the database size and database free space.
   412 	@see RSqlDatabase::Size(TSize&)
   413 	*/
   414 	struct TSize
   415 		{
   416 		/** The database size in bytes*/
   417 		TInt64	iSize;
   418 		/** The database free space in bytes*/
   419 		TInt64	iFree;
   420 		};
   421 
   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};
   424 		
   425 	IMPORT_C RSqlDatabase();
   426 	
   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);
   435 	
   436 	IMPORT_C void Close();
   437 	
   438 	IMPORT_C TInt Attach(const TDesC& aDbFileName, const TDesC& aDbName);
   439 	IMPORT_C TInt Detach(const TDesC& aDbName);
   440 	
   441 	IMPORT_C static TInt Copy(const TDesC& aSrcDbFileName, const TDesC& aDestDbFileName);
   442 	IMPORT_C static TInt Delete(const TDesC& aDbFileName);
   443 	
   444 	IMPORT_C TInt GetSecurityPolicy(RSqlSecurityPolicy& aSecurityPolicy) const;
   445 	IMPORT_C void GetSecurityPolicyL(RSqlSecurityPolicy& aSecurityPolicy) const;
   446 	
   447 	IMPORT_C TInt SetIsolationLevel(TIsolationLevel aIsolationLevel);
   448 	
   449 	IMPORT_C TInt Exec(const TDesC& aSqlStmt);
   450 	IMPORT_C TInt Exec(const TDesC8& aSqlStmt);
   451 	
   452 	IMPORT_C void Exec(const TDesC& aSqlStmt, TRequestStatus& aStatus);
   453 	IMPORT_C void Exec(const TDesC8& aSqlStmt, TRequestStatus& aStatus);
   454 	
   455 	IMPORT_C TPtrC LastErrorMessage() const;
   456 	IMPORT_C TInt64 LastInsertedRowId() const; 
   457 	
   458 	IMPORT_C TBool InTransaction() const;
   459 	IMPORT_C TInt Size() const;
   460 	IMPORT_C TInt Size(TSize& aSize, const TDesC& aDbName = KNullDesC) const;
   461 
   462 	IMPORT_C TInt Compact(TInt64 aSize, const TDesC& aDbName = KNullDesC);
   463 	IMPORT_C void Compact(TInt64 aSize, TRequestStatus& aStatus, const TDesC& aDbName = KNullDesC);
   464 	
   465 	IMPORT_C TInt ReserveDriveSpace(TInt aSize);
   466 	IMPORT_C void FreeReservedSpace();
   467 	IMPORT_C TInt GetReserveAccess();
   468 	IMPORT_C void ReleaseReserveAccess();
   469 	
   470 private:
   471 	CSqlDatabaseImpl& Impl() const;
   472 
   473 private:
   474 	CSqlDatabaseImpl* iImpl;
   475 	};
   476 
   477 /**
   478 TSqlScalarFullSelectQuery interface is used for executing SELECT sql queries, which 
   479 return a single row consisting of a single column value.
   480 
   481 Examples.
   482 
   483 CASE 1 - retrieving records count of a table:
   484 @code
   485 RSqlDatabase db;
   486 //initialize db object....
   487 .......
   488 TSqlScalarFullSelectQuery fullSelectQuery(db);
   489 TInt recCnt = fullSelectQuery.SelectIntL(_L("SELECT COUNT(*) FROM PersonTbl"));
   490 @endcode
   491 
   492 CASE 2 - retrieving specific column value using a condition in the SELECT statement:
   493 @code
   494 RSqlDatabase db;
   495 //initialize db object....
   496 .......
   497 TSqlScalarFullSelectQuery fullSelectQuery(db);
   498 TInt personId = fullSelectQuery.SelectIntL(_L("SELECT ID FROM PersonTbl WHERE Name = 'John'"));
   499 @endcode
   500 
   501 CASE 3 - retrieving a text column value, the receiving buffer is not big enough:
   502 @code
   503 RSqlDatabase db;
   504 //initialize db object....
   505 .......
   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
   511 if(rc > 0)
   512 	{
   513 	buf = buf->ReAllocL(rc);
   514 	CleanupStack::Pop();	
   515 	CleanupStack::PushL(buf);
   516 	name.Set(buf->Des());
   517 	rc = fullSelectQuery.SelectTextL(_L("SELECT Name FROM PersonTbl WHERE Id = 1"), name);
   518 	TEST(rc == 0);
   519 	}
   520 CleanupStack::PopAndDestroy();//buf
   521 @endcode
   522 
   523 @see RSqlDatabase
   524 
   525 @publishedAll
   526 @released
   527 */
   528 class TSqlScalarFullSelectQuery
   529 	{
   530 public:
   531 	IMPORT_C TSqlScalarFullSelectQuery();
   532 	IMPORT_C TSqlScalarFullSelectQuery(RSqlDatabase& aDatabase);
   533 	IMPORT_C void SetDatabase(RSqlDatabase& aDatabase);
   534 
   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);
   540 
   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);
   546 	
   547 private:
   548 	inline CSqlDatabaseImpl& Impl() const;
   549 	
   550 private:	
   551 	CSqlDatabaseImpl* iDatabaseImpl;
   552 	};
   553 
   554 /**
   555 An enumeration whose values represent the supported database column types.
   556 
   557 
   558 @see RSqlStatement::ColumnType()
   559 
   560 @publishedAll
   561 @released
   562 */
   563 enum TSqlColumnType 
   564 	{
   565 	/**
   566 	Null column value.
   567 	*/
   568 	ESqlNull,
   569 	
   570  	/**
   571  	32-bit integer column value.
   572  	*/  
   573 	ESqlInt, 
   574 	
   575  	/**
   576  	64-bit integer column value.
   577  	*/
   578 	ESqlInt64, 
   579 	
   580 	/**
   581 	64-bit floating point column value.
   582 	*/
   583 	ESqlReal, 
   584 	
   585 	/**
   586 	Unicode text, a sequence of 16-bit character codes.
   587 	*/
   588 	ESqlText, 
   589 	
   590 	/**
   591 	Binary data, a sequence of bytes.
   592 	*/
   593 	ESqlBinary
   594 	};
   595 
   596 /**
   597 Represents an SQL statement.
   598 
   599 An object of this type can be used to execute all types of SQL statements; this
   600 includes SQL statements with parameters.
   601 
   602 If a SELECT statament is passed to RSqlStatement::Prepare(), then the returned record set 
   603 is forward only, non-updateable.
   604 
   605 There are a number of ways that this object is used; here are some examples.
   606 
   607 CASE 1 - the execution of a SQL statement, which does not return record set:
   608 
   609 @code
   610 RSqlDatabase database;
   611 .........
   612 RSqlStatement stmt;
   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)
   616 	{
   617 	err = stmt.BindInt(paramIndex, i);
   618 	err = stmt.Exec();
   619 	err = stmt.Reset();
   620 	}
   621 stmt.Close();
   622 @endcode
   623 
   624 The following pseudo code shows the general pattern:
   625 
   626 @code
   627 <RSqlStatement::Prepare()>
   628 [begin:]
   629 <RSqlStatement::Bind<param_type>()>
   630 <RSqlStatement::Exec()>
   631 [<RSqlStatement::Reset()>]
   632 [<RSqlStatement::Bind<param_type>()>]
   633 [<Goto :begin>]
   634 @endcode
   635 
   636 CASE 2 - the execution of a SQL statement, which returns a record set:
   637 
   638 @code
   639 RSqlDatabase database;
   640 .........
   641 RSqlStatement stmt;
   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)
   647 	{
   648 	TInt val = stmt.ColumnInt(columnIndex);
   649 	RDebug::Print(_L("val=%d\n"), val);
   650 	}
   651 if(err == KSqlAtEnd)
   652 	<OK - no more records>;
   653 else
   654 	<process the error>;
   655 stmt.Close();
   656 @endcode
   657 
   658 The following pseudo code shows the general pattern:
   659 
   660 @code
   661 <RSqlStatement::Prepare()>
   662 [begin:]
   663 <while (RSqlStatement::Next() == KSqlAtRow)>
   664 	<do something with the records>
   665 if(err == KSqlAtEnd)
   666 	<OK - no more records>;
   667 else
   668 	<process the error>;
   669 [<RSqlStatement::Reset()>]
   670 [<RSqlStatement::Bind<param_type>()>]
   671 [<Goto begin>]
   672 @endcode
   673 
   674 CASE 3.1 - SELECT statements: large column data processing, where the data is
   675 copied into a buffer supplied by the client:
   676 
   677 @code
   678 RSqlDatabase database;
   679 .........
   680 RSqlStatement stmt;
   681 TInt err = stmt.Prepare(database, _L("SELECT BinaryField FROM Tbl1"));
   682 TInt columnIndex = stmt.ColumnIndex(_L("BinaryField"));
   683 while((err = stmt.Next()) == KSqlAtRow)
   684 	{
   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>;
   689 	delete buf;
   690 	}
   691 if(err == KSqlAtEnd)
   692 	<OK - no more records>;
   693 else
   694 	<process the error>;
   695 stmt.Close();
   696 @endcode
   697 
   698 CASE 3.2 - SELECT statements: large column data processing, where the data is
   699 accessed by the client without copying:
   700 
   701 @code
   702 RSqlDatabase database;
   703 .........
   704 RSqlStatement stmt;
   705 TInt err = stmt.Prepare(database, _L("SELECT BinaryField FROM Tbl1"));
   706 TInt columnIndex = stmt.ColumnIndex(_L("BinaryField"));
   707 while((err = stmt.Next()) == KSqlAtRow)
   708 	{
   709 	TPtrC8 data = stmt.ColumnBinaryL(columnIndex);
   710 	<do something with the data>;
   711 	}
   712 if(err == KSqlAtEnd)
   713 	<OK - no more records>;
   714 else
   715 	<process the error>;
   716 stmt.Close();
   717 @endcode
   718 
   719 CASE 3.3 - SELECT statements, large column data processing (the data is accessed by 
   720 the client without copying), leaving-safe processing:
   721 
   722 @code
   723 RSqlDatabase database;
   724 .........
   725 RSqlStatement stmt;
   726 TInt err = stmt.Prepare(database, _L("SELECT BinaryField FROM Tbl1"));
   727 TInt columnIndex = stmt.ColumnIndex(_L("BinaryField"));
   728 while((err = stmt.Next()) == KSqlAtRow)
   729 	{
   730 	TPtrC8 data;
   731 	TInt err = stmt.ColumnBinary(columnIndex, data);
   732 	if(err == KErrNone)
   733 		{
   734 		<do something with the data>;
   735 		}
   736 	}
   737 if(err == KSqlAtEnd)
   738 	<OK - no more records>;
   739 else
   740 	<process the error>;
   741 stmt.Close();
   742 @endcode
   743 
   744 CASE 3.4 - SELECT statements: large column data processing, where the data is
   745 accessed by the client using a stream:
   746 
   747 @code
   748 RSqlDatabase database;
   749 .........
   750 RSqlStatement stmt;
   751 TInt err = stmt.Prepare(database, _L("SELECT BinaryField FROM Tbl1"));
   752 TInt columnIndex = stmt.ColumnIndex(_L("BinaryField"));
   753 while((err = stmt.Next()) == KSqlAtRow)
   754 	{
   755 	RSqlColumnReadStream stream;
   756 	err = stream.ColumnBinary(stmt, columnIndex);
   757 	<do something with the data in the stream>;
   758 	stream.Close();
   759 	}
   760 if(err == KSqlAtEnd)
   761 	<OK - no more records>;
   762 else
   763 	<process the error>;
   764 stmt.Close();
   765 @endcode
   766 
   767 CASE 4 - the execution of a SQL statement with parameter(s), some of which may
   768 be large text or binary values:
   769 
   770 @code
   771 RSqlDatabase database;
   772 .........
   773 RSqlStatement stmt;
   774 TInt err = 
   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)
   779 	{
   780 	RSqlParamWriteStream stream;
   781 	err = stream.BindText(stmt, paramIndex1);
   782 	<insert large text data into the stream>;
   783 	stream.Close();
   784 	err = stmt.BindInt(paramIndex2, i);
   785 	err = stmt.Exec();
   786 	stmt.Reset();
   787 	}
   788 stmt.Close();
   789 @endcode
   790 
   791 The following table shows what is returned when the caller uses a specific
   792 column data retrieving function on a specific column type.
   793 
   794 @code
   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 --------------------------------------------------------------------------------
   805 @endcode
   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.
   812 
   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.
   817 
   818 @see KMinTInt
   819 @see KMaxTInt
   820 @see KNullDesC
   821 @see KNullDesC8
   822 @see RSqlBlobReadStream
   823 @see RSqlBlobWriteStream
   824 @see TSqlBlob
   825 
   826 @publishedAll
   827 @released
   828 */
   829 class RSqlStatement
   830 	{
   831 	friend class RSqlColumnReadStream;
   832 	friend class RSqlParamWriteStream;
   833 
   834 public:
   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();
   846 	
   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;
   853 	
   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);
   861 	
   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;
   866 	
   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;
   870 	
   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;
   874 	
   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);
   878 private:
   879 	CSqlStatementImpl& Impl() const;
   880 	
   881 private:
   882 	CSqlStatementImpl* 	iImpl;
   883 	
   884 	};
   885 
   886 /**
   887 The read stream interface.
   888 
   889 The class is used for reading the content of a column containing either 
   890 binary data or text data.
   891 
   892 The class derives from RReadStream, which means that all RReadStream public
   893 member functions and predefined stream operators \>\> can be used to deal
   894 with column data.
   895 
   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
   899 a database.
   900 
   901 The following two cases are typical:
   902 
   903 CASE 1 - processing large binary column data.
   904 
   905 @code
   906 RSqlDatabase db;
   907 <open/create "db" object>;
   908 RSqlStatement stmt;
   909 <prepare "stmt" object>;
   910 TInt rc = stmt.Next();
   911 if(rc == KSqlAtRow)
   912 	{
   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);
   920 	//Close the stream
   921 	CleanupStack::PopAndDestroy(&colStream);
   922 	}
   923 else
   924 	{
   925 	...
   926 	}
   927 @endcode
   928 
   929 CASE 2 - processing large text column data.
   930 
   931 @code
   932 RSqlDatabase db;
   933 <open/create "db" object>;
   934 RSqlStatement stmt;
   935 <prepare "stmt" object>;
   936 TInt rc = stmt.Next();
   937 if(rc == KSqlAtRow)
   938 	{
   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);
   946 	//Close the stream
   947 	CleanupStack::PopAndDestroy(&colStream);
   948 	}
   949 else
   950 	{
   951 	...
   952 	}
   953 @endcode
   954 
   955 @see RSqlBlobReadStream
   956 @see TSqlBlob
   957 
   958 @publishedAll
   959 @released
   960 */
   961 class RSqlColumnReadStream : public RReadStream
   962 	{
   963 public:	
   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);
   968 
   969 	};
   970 
   971 /**
   972 The write stream interface.
   973 
   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.
   976 
   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
   979 the parameter data.
   980 
   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
   984 a database.
   985 
   986 The following two cases are typical:
   987 
   988 CASE 1 - binding a large binary parameter.
   989 
   990 @code
   991 RSqlDatabase db;
   992 <open/create "db" object>;
   993 RSqlStatement stmt;
   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>;
  1001 ...
  1002 //Commit the stream
  1003 paramStream.CommitL();
  1004 //Continue with the statement processing issuing Next() or Exec().
  1005 TInt rc = stmt.Next();//rc = stmt.Exec()
  1006 //Close the stream
  1007 CleanupStack::PopAndDestroy(&paramStream);
  1008 @endcode
  1009 
  1010 CASE 2 - binding a large text parameter.
  1011 
  1012 @code
  1013 RSqlDatabase db;
  1014 <open/create "db" object>;
  1015 RSqlStatement stmt;
  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>;
  1023 ...
  1024 //Commit the stream
  1025 paramStream.CommitL();
  1026 //Continue with the statement processing issuing Next() or Exec().
  1027 TInt rc = stmt.Next();//rc = stmt.Exec()
  1028 //Close the stream
  1029 CleanupStack::PopAndDestroy(&paramStream);
  1030 @endcode
  1031 
  1032 @see RSqlBlobWriteStream
  1033 @see TSqlBlob
  1034 
  1035 @publishedAll
  1036 @released
  1037 */
  1038 class RSqlParamWriteStream : public RWriteStream
  1039 	{
  1040 public:	
  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);
  1045 
  1046 	};
  1047 
  1048 /**
  1049 A direct handle to a blob, used for reading the content of the blob via a streaming interface.
  1050 
  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).
  1054 
  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.
  1059 
  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.
  1062 
  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.
  1066 
  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.
  1071 
  1072 The following code illustrates typical use cases of this class:
  1073 
  1074 CASE 1 - reading large blob data from the last inserted record.
  1075 
  1076 @code
  1077 RSqlDatabase db;
  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();
  1086 while(size)
  1087 	{
  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;
  1092 	}
  1093 CleanupStack::PopAndDestroy(3); // buffer, rdStrm, db
  1094 @endcode
  1095 
  1096 CASE 2 - reading large blob data from a selection of records.
  1097 
  1098 @code
  1099 RSqlDatabase db;
  1100 CleanupClosePushL(db);
  1101 <open/create "db" object>;
  1102 RSqlStatement stmt;
  1103 CleanupClosePushL(stmt);
  1104 <prepare "stmt" object to SELECT the ROWIDs of a collection of blob objects>;
  1105 TInt rc = 0;
  1106 while((rc = stmt.Next()) == KSqlAtRow)
  1107 	{
  1108 	TInt64 rowid = stmt.ColumnInt64(0);	
  1109 	RSqlBlobReadStream rdStrm;
  1110 	CleanupClosePushL(rdStrm);
  1111 	rdStrm.OpenL(db, <table_name>, <column_name>, rowid);
  1112 	
  1113 	HBufC8* buffer = HBufC8::NewLC(KBlockSize);
  1114 	TPtr8 bufPtr(buffer->Des());
  1115 	TInt size = rdStrm.SizeL();
  1116 	while(size)
  1117 		{
  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;
  1122 		}
  1123 	CleanupStack::PopAndDestroy(2); // buffer, rdStrm
  1124 	}
  1125 CleanupStack::PopAndDestroy(2); // stmt, db
  1126 @endcode
  1127 
  1128 @see RSqlBlobWriteStream
  1129 @see RSqlDatabase::LastInsertedRowId()
  1130 
  1131 @publishedAll
  1132 @released
  1133 */
  1134 class RSqlBlobReadStream : public RReadStream
  1135 	{
  1136 public:						
  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();
  1140 	};
  1141 
  1142 /**
  1143 A direct handle to a blob, used for writing the content of the blob via a streaming interface.
  1144 
  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).
  1148 
  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.
  1154 
  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
  1159 fail with KErrEof.
  1160 
  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.
  1164 
  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.
  1169 
  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.
  1178 
  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.
  1182 
  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.
  1189 
  1190 The following code illustrates typical use cases of this class:
  1191 
  1192 CASE 1 - creating a 5Mb blob.
  1193 
  1194 @code
  1195 RSqlDatabase db;
  1196 CleanupClosePushL(db);
  1197 <open/create "db" object>;
  1198 CleanupStack::PushL(TCleanupItem(&DoRollback, &db)); // rollback function
  1199 TInt err = db.Exec(_L("BEGIN"));
  1200 <check err>
  1201 err = db.Exec(_L("INSERT INTO table1 VALUES(35, zeroblob(5242880))"));
  1202 <check err>
  1203 RSqlBlobWriteStream wrStrm;
  1204 CleanupClosePushL(wrStrm);
  1205 wrStrm.OpenL(db, <table_name>, <column_name>);
  1206 TInt size = wrStrm.SizeL();
  1207 while(size)
  1208 	{
  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;
  1213 	}
  1214 CleanupStack::PopAndDestroy(&wrStrm);
  1215 CleanupStack::Pop(); // TCleanupItem
  1216 err = db.Exec(_L("COMMIT")); // blob data committed to disk
  1217 <check err>
  1218 CleanupStack::PopAndDestroy(&db);
  1219 @endcode
  1220 
  1221 CASE 2 - updating a large blob in the last inserted record.
  1222 
  1223 @code
  1224 RSqlDatabase db;
  1225 CleanupClosePushL(db);
  1226 <open/create "db" object>;
  1227 CleanupStack::PushL(TCleanupItem(&DoRollback, &db)); // rollback function
  1228 TInt err = db.Exec(_L("BEGIN"));
  1229 <check err>
  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
  1238 <check err>
  1239 CleanupStack::PopAndDestroy(&db);
  1240 @endcode
  1241 
  1242 @see RSqlBlobReadStream
  1243 @see RSqlDatabase::LastInsertedRowId()
  1244 @see RSqlStatement::BindZeroBlob()
  1245 
  1246 @publishedAll
  1247 @released
  1248 */
  1249 class RSqlBlobWriteStream : public RWriteStream
  1250 	{
  1251 public:
  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();
  1255 	};
  1256 
  1257 /**
  1258 Utility class that provides methods for reading and writing the entire content of 
  1259 a blob in a single call.
  1260 
  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).
  1264 
  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.
  1269 
  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.
  1274 
  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.
  1280 
  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.
  1287 
  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.
  1291 
  1292 The following code illustrates typical use cases of this class:
  1293 
  1294 CASE 1 - retrieving the entire content of a large blob.
  1295 
  1296 @code
  1297 RSqlDatabase db;
  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
  1303 @endcode
  1304 
  1305 
  1306 CASE 2 - creating a 4Mb blob.
  1307 
  1308 @code
  1309 RSqlDatabase db;
  1310 CleanupClosePushL(db);
  1311 <open/create "db" object>;
  1312 CleanupStack::PushL(TCleanupItem(&DoRollback, &db)); // rollback function
  1313 TInt err = db.Exec(_L("BEGIN"));
  1314 <check err>
  1315 err = db.Exec(_L("INSERT INTO table1 VALUES(99, zeroblob(4194304))"));
  1316 <check err>
  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
  1321 <check err>
  1322 CleanupStack::PopAndDestroy(&db);
  1323 @endcode
  1324 
  1325 @see RSqlBlobReadStream
  1326 @see RSqlBlobWriteStream
  1327 @see RSqlDatabase::LastInsertedRowId()
  1328 @see RSqlStatement::BindZeroBlob()
  1329 
  1330 @publishedAll
  1331 @released
  1332 */
  1333 class TSqlBlob
  1334 	{
  1335 public:					  		  	  
  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);
  1341 								  		  	  
  1342 	IMPORT_C static TInt Get(RSqlDatabase& aDb, 	
  1343 					 		 const TDesC& aTableName, 
  1344 					 		 const TDesC& aColumnName, 	
  1345 					 		 TDes8& aBuffer,
  1346 					 		 TInt64 aRowId = KSqlLastInsertedRowId,
  1347 					 		 const TDesC& aDbName = KNullDesC);			 		 
  1348 
  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);				  
  1355 	};
  1356 
  1357 /**
  1358 Defines a set of categories for the values returned by the SQL API.
  1359 
  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. 
  1363 
  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
  1366 of the error.
  1367 
  1368 The category associated with a specific return code can be found by passing the 
  1369 return code value to the function SqlRetCodeClass().
  1370 
  1371 @publishedAll
  1372 @released
  1373 */
  1374 enum TSqlRetCodeClass 
  1375 	{
  1376 	/**
  1377 	Indicates that a return code is just for information.
  1378 	
  1379 	This category corresponds to the SQL API return codes: KSqlAtRow and KSqlAtEnd. 
  1380 	
  1381 	@see SqlRetCodeClass()
  1382 	@see TSqlRetCodeClass
  1383 	@see KSqlAtRow 
  1384 	@see KSqlAtEnd
  1385 	*/
  1386 	ESqlInformation, 
  1387 	
  1388 	/**
  1389 	Indicates that a return code represents a database-specific error.
  1390 	
  1391 	This category corresponds to SQL API return codes in the range KSqlErrGeneral to KSqlErrStmtExpired.
  1392 	
  1393 	@see SqlRetCodeClass()
  1394 	@see TSqlRetCodeClass
  1395 	@see KSqlErrGeneral
  1396 	@see KSqlErrStmtExpired
  1397 	*/
  1398 	ESqlDbError,
  1399 	
  1400 	/**
  1401 	Indicates that a return code represents a Symbian OS error.
  1402 	
  1403 	This category corresponds to SQL API return codes in the range KErrPermissionDenied to KErrNone,
  1404 	
  1405 	@see SqlRetCodeClass()
  1406 	@see TSqlRetCodeClass
  1407 	@see KErrPermissionDenied
  1408 	@see KErrNone
  1409 	*/
  1410 	ESqlOsError 
  1411 	};
  1412 
  1413 /**
  1414 An information type return code from a call to RSqlStatement::Next().
  1415 
  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
  1418 member functions.
  1419 
  1420 @see RSqlStatement::Next()
  1421 @see RSqlStatement
  1422 @see ESqlInformation
  1423 @see TSqlRetCodeClass
  1424 
  1425 @publishedAll
  1426 @released
  1427 */
  1428 const TInt KSqlAtRow = 1;
  1429 
  1430 /**
  1431 An information type return code from a call to RSqlStatement::Next().
  1432 
  1433 It means that the RSqlStatement object does not point to a valid row,
  1434 and that column data accessors cannot be used.
  1435 
  1436 @see RSqlStatement::Next()
  1437 @see RSqlStatement
  1438 @see ESqlInformation
  1439 @see TSqlRetCodeClass
  1440 
  1441 @publishedAll
  1442 @released
  1443 */
  1444 const TInt KSqlAtEnd = 2;
  1445 
  1446 /**
  1447 An SQL database-specific error type return code from a call to the SQL API.
  1448 
  1449 It indicates a general SQL error or a missing database.
  1450 
  1451 @see RSqlStatement
  1452 @see ESqlDbError
  1453 @see TSqlRetCodeClass
  1454 
  1455 @publishedAll
  1456 @released
  1457 */
  1458 const TInt KSqlErrGeneral		= -311;
  1459 
  1460 /**
  1461 An SQL database-specific error type return code from a call to the SQL API.
  1462 
  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.
  1465 
  1466 @see RSqlStatement
  1467 @see ESqlDbError
  1468 @see TSqlRetCodeClass
  1469 
  1470 @publishedAll
  1471 @released
  1472 */
  1473 const TInt KSqlErrInternal		= -312;
  1474 
  1475 /**
  1476 An SQL database-specific error type return code from a call to the SQL API.
  1477 
  1478 It indicates that access permission has been denied.
  1479 
  1480 @see RSqlStatement
  1481 @see ESqlDbError
  1482 @see TSqlRetCodeClass
  1483 
  1484 @publishedAll
  1485 @released
  1486 */
  1487 const TInt KSqlErrPermission	= -313;
  1488 
  1489 /**
  1490 An SQL database-specific error type return code from a call to the SQL API.
  1491 
  1492 It indicates an internal logic error in the SQL database engine, and specifically
  1493 that a callback routine requested an abort.
  1494 
  1495 @publishedAll
  1496 @released
  1497 */
  1498 const TInt KSqlErrAbort			= -314;
  1499 
  1500 /**
  1501 An SQL database-specific error type return code from a call to the SQL API.
  1502 
  1503 It indicates that the database file is locked.
  1504 
  1505 @see RSqlStatement
  1506 @see ESqlDbError
  1507 @see TSqlRetCodeClass
  1508 
  1509 @publishedAll
  1510 @released
  1511 */
  1512 const TInt KSqlErrBusy			= -315;
  1513 
  1514 /**
  1515 An SQL database-specific error type return code from a call to the SQL API.
  1516 
  1517 It indicates that a table in the database is locked.
  1518 
  1519 @see RSqlStatement
  1520 @see ESqlDbError
  1521 @see TSqlRetCodeClass
  1522 
  1523 @publishedAll
  1524 @released
  1525 */
  1526 const TInt KSqlErrLocked		= -316;
  1527 
  1528 /**
  1529 An SQL database-specific error type return code from a call to the SQL API.
  1530 
  1531 It indicates an attempt to write to a database that is read-only.
  1532 
  1533 @see RSqlStatement
  1534 @see ESqlDbError
  1535 @see TSqlRetCodeClass
  1536 
  1537 @publishedAll
  1538 @released
  1539 */
  1540 const TInt KSqlErrReadOnly		= -318;
  1541 
  1542 /**
  1543 SQL database-specific error type. Operation terminated.
  1544 
  1545 @publishedAll
  1546 @released
  1547 */
  1548 const TInt KSqlErrInterrupt		= -319;
  1549 
  1550 /**
  1551 An SQL database-specific error type return code from a call to the SQL API.
  1552 
  1553 It indicates that a disk I/O error has occurred.
  1554 
  1555 @see RSqlStatement
  1556 @see ESqlDbError
  1557 @see TSqlRetCodeClass
  1558 
  1559 @publishedAll
  1560 @released
  1561 */
  1562 const TInt KSqlErrIO			= -320;
  1563 
  1564 /**
  1565 An SQL database-specific error type return code from a call to the SQL API.
  1566 
  1567 It indicates that the database disk image is malformed.
  1568 
  1569 @see RSqlStatement
  1570 @see ESqlDbError
  1571 @see TSqlRetCodeClass
  1572 
  1573 @publishedAll
  1574 @released
  1575 */
  1576 const TInt KSqlErrCorrupt		= -321;
  1577 
  1578 /**
  1579 SQL database-specific error type. Table or record not found.
  1580 
  1581 @publishedAll
  1582 @released
  1583 */
  1584 const TInt KSqlErrNotFound		= -322;
  1585 
  1586 /**
  1587 An SQL database-specific error type return code from a call to the SQL API.
  1588 
  1589 It indicates that an insertion operation has failed because an autoincrement column used up 
  1590 all awailable rowids.
  1591 
  1592 @see RSqlStatement
  1593 @see ESqlDbError
  1594 @see TSqlRetCodeClass
  1595 
  1596 @publishedAll
  1597 @released
  1598 */
  1599 const TInt KSqlErrFull			= -323;
  1600 
  1601 /**
  1602 An SQL database-specific error type return code from a call to the SQL API.
  1603 
  1604 It indicates a failure to open the database file.
  1605 
  1606 @see RSqlStatement
  1607 @see ESqlDbError
  1608 @see TSqlRetCodeClass
  1609 
  1610 @publishedAll
  1611 @released
  1612 */
  1613 const TInt KSqlErrCantOpen		= -324;
  1614 
  1615 /**
  1616 An SQL database-specific error type return code from a call to the SQL API.
  1617 
  1618 It indicates a database lock protocol error.
  1619 
  1620 @see RSqlStatement
  1621 @see ESqlDbError
  1622 @see TSqlRetCodeClass
  1623 
  1624 @publishedAll
  1625 @released
  1626 */
  1627 const TInt KSqlErrProtocol		= -325;
  1628 
  1629 /**
  1630 An SQL database-specific error type return code from a call to the SQL API.
  1631 
  1632 It indicates that the database is empty.
  1633 
  1634 @see RSqlStatement
  1635 @see ESqlDbError
  1636 @see TSqlRetCodeClass
  1637 
  1638 @publishedAll
  1639 @released
  1640 */
  1641 const TInt KSqlErrEmpty			= -326;
  1642 
  1643 /**
  1644 An SQL database-specific error type return code from a call to the SQL API.
  1645 
  1646 It indicates that a prepared SQL statement is no longer valid 
  1647 and cannot be executed.
  1648 
  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.
  1652 
  1653 Another possible reason for this return code is a detached database.
  1654 
  1655 @see RSqlStatement
  1656 @see ESqlDbError
  1657 @see TSqlRetCodeClass
  1658 
  1659 @publishedAll
  1660 @released
  1661 */
  1662 const TInt KSqlErrSchema		= -327;
  1663 
  1664 /**
  1665 SQL database-specific error type. Too much data for one row.
  1666 
  1667 @publishedAll
  1668 @released
  1669 */
  1670 const TInt KSqlErrTooBig		= -328;
  1671 
  1672 /**
  1673 An SQL database-specific error type return code from a call to the SQL API.
  1674 
  1675 It indicates an abort due to constraint violation.
  1676 
  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).
  1680 
  1681 @see RSqlStatement
  1682 @see ESqlDbError
  1683 @see TSqlRetCodeClass
  1684 
  1685 @publishedAll
  1686 @released
  1687 */
  1688 const TInt KSqlErrConstraint	= -329;
  1689 
  1690 /**
  1691 An SQL database-specific error type return code from a call to the SQL API.
  1692 
  1693 It indicates a data type mismatch.
  1694 
  1695 @see RSqlStatement
  1696 @see ESqlDbError
  1697 @see TSqlRetCodeClass
  1698 
  1699 @publishedAll
  1700 @released
  1701 */
  1702 const TInt KSqlErrMismatch		= -330;
  1703 
  1704 /**
  1705 An SQL database-specific error type return code from a call to the SQL API.
  1706 
  1707 It indicates an internal logic error in the SQL database engine.
  1708 
  1709 @see RSqlStatement
  1710 @see ESqlDbError
  1711 @see TSqlRetCodeClass
  1712 
  1713 @publishedAll
  1714 @released
  1715 */
  1716 const TInt KSqlErrMisuse		= -331;
  1717 
  1718 /**
  1719 An SQL database-specific error type return code from a call to the SQL API.
  1720 
  1721 It indicates that a parameter index value is out of range.
  1722 
  1723 @see RSqlStatement
  1724 @see ESqlDbError
  1725 @see TSqlRetCodeClass
  1726 
  1727 @publishedAll
  1728 @released
  1729 */
  1730 const TInt KSqlErrRange			= -335;
  1731 
  1732 /**
  1733 An SQL database-specific error type return code from a call to the SQL API.
  1734 
  1735 It indicates that the file that has been opened is not a database file.
  1736 
  1737 @see RSqlStatement
  1738 @see ESqlDbError
  1739 @see TSqlRetCodeClass
  1740 
  1741 @publishedAll
  1742 @released
  1743 */
  1744 const TInt KSqlErrNotDb			= -336;
  1745 
  1746 /**
  1747 An SQL database-specific error type return code from a call to the SQL API.
  1748 
  1749 It indicates that an SQL statement has expired, and needs to be prepared again.
  1750 
  1751 @see RSqlStatement
  1752 @see ESqlDbError
  1753 @see TSqlRetCodeClass
  1754 
  1755 @publishedAll
  1756 @released
  1757 */
  1758 const TInt KSqlErrStmtExpired	= -360;
  1759 
  1760 IMPORT_C TSqlRetCodeClass SqlRetCodeClass(TInt aSqlRetCode);
  1761 
  1762 #endif //__SQLDB_H__