os/persistentdata/persistentstorage/sql/SRC/Client/SqlStatement.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include "SqlStatementImpl.h"		//CSqlStatementImpl
    17 #include "OstTraceDefinitions.h"
    18 #ifdef OST_TRACE_COMPILER_IN_USE
    19 #include "SqlStatementTraces.h"
    20 #endif
    21 #include "SqlTraceDef.h"
    22 
    23 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
    24 
    25 /**
    26 Initialises the pointer to the implementation object to NULL.
    27 
    28 @capability None
    29 */
    30 EXPORT_C RSqlStatement::RSqlStatement() :
    31 	iImpl(NULL)
    32 	{
    33 	}
    34 
    35 /**
    36 Prepares the supplied 16-bit SQL statement for execution.
    37 
    38 An RSqlStatement object can prepare and execute a parameterised SQL statement or
    39 an SQL statement without parameters.
    40 
    41 The function can only deal with one SQL statement at a time, i.e. if you
    42 supply more than one SQL statement, each separated by a ";" character, then
    43 the function returns an error.
    44 
    45 Note that when the statement is to be used to retrieve or write blob or text data
    46 that is over 2Mb in size then it is recommended that the RSqlBlobReadStream and 
    47 RSqlBlobWriteStream classes or the TSqlBlob class is used instead. 
    48 These classes provide a more RAM-efficient way of reading and writing large 
    49 amounts of blob or text data from a database.
    50 
    51 @param aDatabase     A reference to the RSqlDatabase object that represents 
    52                      the database for which the SQL statement is being prepared.
    53 @param aSqlStmt      A string of 16-bit wide characters containing the
    54                      SQL statement to be prepared.
    55 
    56 @return KErrNone,     the SQL statement has been prepared for execution successfully;
    57         KErrNoMemory, an out of memory condition has occurred;
    58         KErrArgument, the SQL statement is invalid, for example, the supplied
    59                       string contains more than one SQL statement, or it
    60                       contains an empty SQL statement.
    61                       Note that database specific errors categorised as ESqlDbError
    62                       can also be returned;
    63         KSqlErrGeneral, a syntax error has occurred - text describing the problem
    64                         can be obtained by calling 	RSqlDatabase::LastErrorMessage().
    65 		KErrPermissionDenied, the calling application does not satisfy the relevant database security policies.
    66                       Note that database specific errors categorised as ESqlDbError, and
    67                       other system-wide error codes may also be returned.
    68 
    69 @capability None, if current RSqlStatement object represents a handle which operates on a non-secure database;
    70             RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema; 
    71             RSqlSecurityPolicy::EReadPolicy or 
    72             RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database; 
    73             RSqlSecurityPolicy::EWritePolicy or
    74             RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database;
    75 
    76 @see TSqlRetCodeClass::ESqlDbError
    77 @see RSqlDatabase
    78 @see RSqlDatabase::LastErrorMessage()
    79 @see RSqlSecurityPolicy
    80 @see RSqlSecurityPolicy::TPolicyType
    81 @see RSqlBlobReadStream
    82 @see RSqlBlobWriteStream
    83 @see TSqlBlob
    84 */	
    85 EXPORT_C TInt RSqlStatement::Prepare(RSqlDatabase& aDatabase, const TDesC& aSqlStmt)
    86 	{
    87     SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLSTATEMENT_PREPARE16_ENTRY, "Entry;0x%X;RSqlStatement::Prepare16;aDatabase=0x%X;aSqlStmt=%S", (TUint)this, (TUint)&aDatabase, __SQLPRNSTR(aSqlStmt)));
    88 	TInt err = CSqlStatementImpl::New(iImpl, aDatabase.Impl(), aSqlStmt);
    89     SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLSTATEMENT_PREPARE16_EXIT, "Exit;0x%X;RSqlStatement::Prepare16;iImpl=0x%X;err=%d", (TUint)this, (TUint)iImpl, err));
    90 	return err;
    91 	}
    92 	
    93 /**
    94 Prepares the supplied 8-bit SQL statement for execution.
    95 
    96 An RSqlStatement object can prepare and execute a parameterised SQL statement or
    97 an SQL statement without parameters.
    98 
    99 The function can only deal with one SQL statement at a time, i.e. if you
   100 supply more than one SQL statement, each separated by a ";" character, then
   101 the function returns an error.
   102 
   103 Note that when the statement is to be used to retrieve or write blob or text data
   104 that is over 2Mb in size then it is recommended that the RSqlBlobReadStream and 
   105 RSqlBlobWriteStream classes or the TSqlBlob class is used instead. 
   106 These classes provide a more RAM-efficient way of reading and writing large 
   107 amounts of blob or text data from a database.
   108 
   109 @param aDatabase     A reference to the RSqlDatabase object that represents 
   110                      the database for which the SQL statement is being prepared.
   111 @param aSqlStmt      A string of 8-bit wide characters containing the
   112                      SQL statement to be prepared.
   113 
   114 
   115 @return KErrNone,     the SQL statement has been prepared for execution successfully;
   116         KErrNoMemory, an out of memory condition has occurred;
   117         KErrArgument, the SQL statement is invalid, for example, the supplied
   118                       string contains more than one SQL statement, or it
   119                       contains an empty SQL statement.
   120                       Note that database specific errors categorised as ESqlDbError
   121                       can also be returned;
   122         KSqlErrGeneral, a syntax error has occurred - text describing the problem
   123                         can be obtained by calling 	RSqlDatabase::LastErrorMessage().
   124 		KErrPermissionDenied, the calling application does not satisfy the relevant database security policies.
   125                       Note that database specific errors categorised as ESqlDbError, and
   126                       other system-wide error codes may also be returned.
   127 
   128 @capability None, if current RSqlStatement object represents a handle which operates on a non-secure database;
   129             RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema; 
   130             RSqlSecurityPolicy::EReadPolicy or 
   131             RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database; 
   132             RSqlSecurityPolicy::EWritePolicy or
   133             RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database;
   134 
   135 @see TSqlRetCodeClass::ESqlDbError
   136 @see RSqlDatabase
   137 @see RSqlDatabase::LastErrorMessage()
   138 @see RSqlSecurityPolicy
   139 @see RSqlSecurityPolicy::TPolicyType
   140 @see RSqlBlobReadStream
   141 @see RSqlBlobWriteStream
   142 @see TSqlBlob
   143 */	
   144 EXPORT_C TInt RSqlStatement::Prepare(RSqlDatabase& aDatabase, const TDesC8& aSqlStmt)
   145 	{
   146 	__SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
   147     SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLSTATEMENT_PREPARE8_ENTRY, "Entry;0x%X;RSqlStatement::Prepare8;aDatabase=0x%X;aSqlStmt=%s", (TUint)this, (TUint)&aDatabase, __SQLPRNSTR8(aSqlStmt, des16prnbuf)));
   148 	TInt err = CSqlStatementImpl::New(iImpl, aDatabase.Impl(), aSqlStmt);
   149     SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLSTATEMENT_PREPARE8_EXIT, "Exit;0x%X;RSqlStatement::Prepare8;iImpl=0x%X;err=%d", (TUint)this, (TUint)iImpl, err));
   150 	return err;
   151 	}
   152 
   153 /**
   154 Prepares the supplied 16-bit SQL statement for execution.
   155 
   156 An RSqlStatement object can prepare and execute a parameterised SQL statement or
   157 an SQL statement without parameters.
   158 
   159 The function can only deal with one SQL statement at a time, i.e. if you
   160 supply more than one SQL statement, each separated by a ";" character, then
   161 the function returns an error.
   162 
   163 Note that when the statement is to be used to retrieve or write blob or text data
   164 that is over 2Mb in size then it is recommended that the RSqlBlobReadStream and 
   165 RSqlBlobWriteStream classes or the TSqlBlob class is used instead. 
   166 These classes provide a more RAM-efficient way of reading and writing large 
   167 amounts of blob or text data from a database.
   168 
   169 @param aDatabase     A reference to the RSqlDatabase object that represents 
   170                      the database for which the SQL statement is being prepared.
   171 @param aSqlStmt      A string of 16-bit wide characters containing the
   172                      SQL statement to be prepared.
   173 
   174 @leave  KErrNoMemory, an out of memory condition has occurred;
   175         KErrArgument, the SQL statement is invalid, for example, the supplied
   176                       string contains more than one SQL statement, or it
   177                       contains an empty SQL statement.
   178                       Note that database specific errors categorised as ESqlDbError
   179                       can also be returned;
   180         KSqlErrGeneral, a syntax error has occurred - text describing the problem
   181                         can be obtained by calling 	RSqlDatabase::LastErrorMessage().
   182 		KErrPermissionDenied, the calling application does not satisfy the relevant database security policies.
   183                       Note that the function may leave with database specific errors categorised as ESqlDbError and
   184                       other system-wide error codes.
   185 
   186 @capability None, if current RSqlStatement object represents a handle which operates on a non-secure database;
   187             RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema; 
   188             RSqlSecurityPolicy::EReadPolicy or 
   189             RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database; 
   190             RSqlSecurityPolicy::EWritePolicy or
   191             RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database;
   192 
   193 @see TSqlRetCodeClass::ESqlDbError
   194 @see RSqlDatabase
   195 @see RSqlDatabase::LastErrorMessage()
   196 @see RSqlSecurityPolicy
   197 @see RSqlSecurityPolicy::TPolicyType
   198 @see RSqlBlobReadStream
   199 @see RSqlBlobWriteStream
   200 @see TSqlBlob
   201 */
   202 EXPORT_C void RSqlStatement::PrepareL(RSqlDatabase& aDatabase, const TDesC& aSqlStmt)
   203 	{
   204     SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLSTATEMENT_PREPARE16L_ENTRY, "Entry;0x%X;RSqlStatement::Prepare16L;aDatabase=0x%X;aSqlStmt=%S", (TUint)this, (TUint)&aDatabase, __SQLPRNSTR(aSqlStmt)));
   205 	__SQLLEAVE_IF_ERROR(Prepare(aDatabase, aSqlStmt));
   206     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLSTATEMENT_PREPARE16L_EXIT, "Exit;0x%X;RSqlStatement::Prepare16L;iImpl=0x%X", (TUint)this, (TUint)iImpl));
   207 	}
   208 	
   209 /**
   210 Prepares the supplied 8-bit SQL statement for execution.
   211 
   212 An RSqlStatement object can prepare and execute a parameterised SQL statement or
   213 an SQL statement without parameters.
   214 
   215 The function can only deal with one SQL statement at a time, i.e. if you
   216 supply more than one SQL statement, each separated by a ";" character, then
   217 the function returns an error.
   218 
   219 Note that when the statement is to be used to retrieve or write blob or text data
   220 that is over 2Mb in size then it is recommended that the RSqlBlobReadStream and 
   221 RSqlBlobWriteStream classes or the TSqlBlob class is used instead. 
   222 These classes provide a more RAM-efficient way of reading and writing large 
   223 amounts of blob or text data from a database.
   224 
   225 @param aDatabase     A reference to the RSqlDatabase object that represents 
   226                      the database for which the SQL statement is being prepared.
   227 @param aSqlStmt      A string of 8-bit wide characters containing the
   228                      SQL statement to be prepared.
   229 
   230 
   231 @leave  KErrNoMemory, an out of memory condition has occurred;
   232         KErrArgument, the SQL statement is invalid, for example, the supplied
   233                       string contains more than one SQL statement, or it
   234                       contains an empty SQL statement.
   235                       Note that database specific errors categorised as ESqlDbError
   236                       can also be returned;
   237         KSqlErrGeneral, a syntax error has occurred - text describing the problem
   238                         can be obtained by calling 	RSqlDatabase::LastErrorMessage().
   239 		KErrPermissionDenied, the calling application does not satisfy the relevant database security policies.
   240                       Note that the function may leave with database specific errors categorised as ESqlDbError and
   241                       other system-wide error codes.
   242 
   243 @capability None, if current RSqlStatement object represents a handle which operates on a non-secure database;
   244             RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema; 
   245             RSqlSecurityPolicy::EReadPolicy or 
   246             RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database; 
   247             RSqlSecurityPolicy::EWritePolicy or
   248             RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database;
   249 
   250 @see TSqlRetCodeClass::ESqlDbError
   251 @see RSqlDatabase
   252 @see RSqlDatabase::LastErrorMessage()
   253 @see RSqlSecurityPolicy
   254 @see RSqlSecurityPolicy::TPolicyType
   255 @see RSqlBlobReadStream
   256 @see RSqlBlobWriteStream
   257 @see TSqlBlob
   258 */
   259 EXPORT_C void RSqlStatement::PrepareL(RSqlDatabase& aDatabase, const TDesC8& aSqlStmt)
   260 	{
   261 	__SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
   262     SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLSTATEMENT_PREPARE8L_ENTRY, "Entry;0x%X;RSqlStatement::Prepare8L;aDatabase=0x%X;aSqlStmt=%s", (TUint)this, (TUint)&aDatabase, __SQLPRNSTR8(aSqlStmt, des16prnbuf)));
   263 	__SQLLEAVE_IF_ERROR(Prepare(aDatabase, aSqlStmt));
   264     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLSTATEMENT_PREPARE8L_EXIT, "Exit;0x%X;RSqlStatement::Prepare8L;iImpl=0x%X", (TUint)this, (TUint)iImpl));
   265 	}
   266 
   267 
   268 /**
   269 Closes this SQL statement object.
   270 
   271 The function frees memory and any allocated resources.
   272 
   273 @see RSqlStatement::Prepare()
   274 
   275 @capability None
   276 */	
   277 EXPORT_C void RSqlStatement::Close()
   278 	{
   279     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLSTATEMENT_CLOSE_ENTRY, "Entry;0x%X;RSqlStatement::Close;iImpl=0x%X", (TUint)this, (TUint)iImpl));
   280 	delete iImpl;
   281     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLSTATEMENT_CLOSE_EXIT, "Exit;0x%X;RSqlStatement::Close;iImpl=0x%X", (TUint)this, (TUint)iImpl));
   282 	iImpl = NULL;
   283 	}
   284 
   285 /**
   286 Tests whether the SQL statement points to a valid record.
   287 
   288 @return True, if the SQL statement points to a valid record, false otherwise.
   289 
   290 @capability None
   291 */
   292 EXPORT_C TBool RSqlStatement::AtRow() const
   293 	{
   294 	return Impl().AtRow();
   295 	}
   296 	
   297 /**
   298 Resets the prepared SQL statement to its initial state and makes it ready to be
   299 executed again.
   300 
   301 Any SQL statement parameters that had values bound to them, retain their values.
   302 
   303 If this object processes a parameterised SQL statement, then the parameter
   304 values can be bound after the call to Reset().
   305 
   306 If the call to this function fails because of a database-specific type error 
   307 (i.e. the error is categorised as of type ESqlDbError), then a textual description of
   308 the error can be obtained calling RSqlDatabase::LastErrorMessage().
   309 
   310 
   311 Usage pattern 1:
   312 
   313 @code
   314 RSqlStatement stmt;
   315 TInt err = stmt.Prepare(<database>, <SQL statement>);
   316 while(<condition>)
   317 	{
   318 	err = stmt.Bind<parameter type>(<parameter index>, <value>);
   319 	...
   320 	err = stmt.Exec();
   321 	....
   322 	err = stmt.Reset();
   323 	}
   324 stmt.Close();
   325 @endcode
   326 
   327 Usage pattern 2:
   328 
   329 @code
   330 RSqlStatement stmt;
   331 TInt err = stmt.Prepare(<database>, <SQL statement>);
   332 while(<condition>)
   333 	{
   334 	err = stmt.Bind<parameter type>(<parameter index>, <value>);
   335 	...
   336 	while((err = stmt.Next()) == KSqlAtRow)
   337 		{
   338 		....
   339 		}
   340 	err = stmt.Reset();
   341 	}
   342 stmt.Close();
   343 @endcode
   344 
   345 @return KErrNone, the reset operation has completed successfully;			
   346         KSqlErrStmtExpired, the SQL statement has expired (if new functions or
   347                             collating sequences have been registered or if an
   348                             authorizer function has been added or changed)
   349 
   350 @see TSqlRetCodeClass::ESqlDbError
   351 @see RSqlDatabase::LastErrorMessage()
   352 
   353 @capability None
   354 */	
   355 EXPORT_C TInt RSqlStatement::Reset()
   356 	{
   357     SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLSTATEMENT_RESET_ENTRY, "Entry;0x%X;RSqlStatement::Reset", (TUint)this));
   358 	TInt err = Impl().Reset();
   359     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLSTATEMENT_RESET_EXIT, "Exit;0x%X;RSqlStatement::Reset;err=%d", (TUint)this, err));
   360 	return err;
   361 	}
   362 	
   363 /**
   364 Executes the prepared DDL/DML SQL statement. 
   365 
   366 The function is very useful when the SQL statement contains parameters, because
   367 the statement can be prepared once using RSqlStatement::Prepare(), and then
   368 bound and executed many times.
   369 
   370 Note that:
   371 - parameter values must be bound before calling Exec().
   372 - SQL statements that do not have parameters should use RSqlDatabase::Exec() instead.
   373 
   374 If the call to this function fails because of a database-specific type error 
   375 (i.e. the error is categorised as of type ESqlDbError), then a textual description of
   376 the error can be obtained calling RSqlDatabase::LastErrorMessage().
   377 
   378 Usage pattern:
   379 
   380 @code
   381 RSqlStatement stmt;
   382 TInt err = stmt.Prepare(<database>, <SQL statement>);
   383 while(<condition>)
   384 	{
   385 	err = stmt.Bind<parameter type>(<parameter index>, <value>);
   386 	...
   387 	err = stmt.Exec();
   388 	....
   389 	err = stmt.Reset();
   390 	}
   391 stmt.Close();
   392 @endcode
   393 
   394 @return >=0, The operation has completed successfully. The number of database rows that were 
   395 			 changed/inserted/deleted by the most recently completed DDL/DML sql statement.
   396 			 Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0 
   397 			 if the operation has completed successfully (disregarding the number of the deleted rows);
   398         KSqlErrStmtExpired, the SQL statement has expired (if new functions or
   399                             collating sequences have been registered or if an
   400                             authorizer function has been added or changed);
   401     	KErrDiskFull, There is no available disk space to complete the operation. If the executed statement is a DELETE
   402     			  statement, try to use the reserved disk space (if there is a reserved disk space) to complete the operation.
   403     			  In all other cases the statement and database connection should be closed and some disk space freed 
   404     			  before reopening the database; 
   405         KErrNoMemory, an out of memory condition has occurred - the statement
   406                       will be reset.
   407                       Note that database specific errors categorised as ESqlDbError
   408                       can also be returned.
   409 
   410 @see TSqlRetCodeClass::ESqlDbError
   411 @see RSqlStatement::Prepare()
   412 @see RSqlDatabase::Exec()
   413 @see RSqlDatabase::LastErrorMessage()
   414 
   415 @capability None
   416 */	
   417 EXPORT_C TInt RSqlStatement::Exec()
   418 	{
   419     SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLSTATEMENT_EXEC_ENTRY, "Entry;0x%X;RSqlStatement::Exec", (TUint)this));
   420 	TInt err = Impl().Exec();
   421     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLSTATEMENT_EXEC_EXIT, "Exit;0x%X;RSqlStatement::Exec;err=%d", (TUint)this, err));
   422 	return err;
   423 	}
   424 
   425 /**
   426 Executes the prepared DDL/DML SQL statement asynchronously to allow client to avoid being blocked 
   427 by server activity.
   428 
   429 No other operations can be performed on current RSqlStatement object 
   430 until the asynchronous operation completes.
   431 
   432 The function is very useful when the SQL statement contains parameters, because
   433 the statement can be prepared once using RSqlStatement::Prepare(), and then
   434 bound and executed many times.
   435 
   436 Note that:
   437 - parameter values must be bound before calling Exec().
   438 - SQL statements that do not have parameters should use RSqlDatabase::Exec() instead.
   439 
   440 If the call to this function fails because of a database-specific type error 
   441 (i.e. the error is categorised as of type ESqlDbError), then a textual description of
   442 the error can be obtained calling RSqlDatabase::LastErrorMessage().
   443 
   444 @param aStatus Completion status of asynchronous request, one of the following:
   445 	>=0, The operation has completed successfully. The number of database rows that were 
   446 		changed/inserted/deleted by the most recently completed DDL/DML sql statement.
   447 		Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0 
   448 		if the operation has completed successfully (disregarding the number of the deleted rows);
   449 	KSqlErrStmtExpired, the SQL statement has expired (if new functions or 
   450 						collating sequences have been registered or if an 
   451 						authorizer function has been added or changed);
   452 	KErrDiskFull, There is no available disk space to complete the operation. If the executed statement is a DELETE 
   453 				statement, try to use the reserved disk space (if there is a reserved disk space) 
   454 				to complete the operation.
   455 				In all other cases the statement and database connection should be closed and some disk space freed 
   456 				before reopening the database; 
   457 	KErrNoMemory, an out of memory condition has occurred - the statement 
   458 	will be reset.
   459 	Note that aStatus may be set with database specific errors categorised as ESqlDbError,
   460 	and other system-wide error codes.
   461 
   462 
   463 @see TSqlRetCodeClass::ESqlDbError
   464 @see RSqlStatement::Prepare()
   465 @see RSqlDatabase::Exec()
   466 @see RSqlDatabase::LastErrorMessage()
   467 
   468 @capability None
   469 */	
   470 EXPORT_C void RSqlStatement::Exec(TRequestStatus& aStatus)
   471 	{
   472     SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLSTATEMENT_EXECASYNC_ENTRY, "Entry;0x%X;RSqlStatement::ExecAsync", (TUint)this));
   473 	Impl().Exec(aStatus);
   474     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLSTATEMENT_EXECASYNC_EXIT, "Exit;0x%X;RSqlStatement::ExecAsync;aStatus.Int()=%d", (TUint)this, aStatus.Int()));
   475 	}
   476 	
   477 /**
   478 Retrieves a record.
   479 
   480 If the prepared SQL statement is a "SELECT" statement, and is expected to
   481 return a set of records, then this function can be used to retrieve that record data.
   482 
   483 If the SQL statement contains parameters, then their values must be bound before
   484 this function is called.
   485 
   486 If the call to this function completes successfully, i.e. it returns
   487 with KSqlAtRow, then this RSqlStatement object contains the record data, and 
   488 this data will remain valid for access until another call is made to any
   489 RSqlStatement function.
   490 
   491 The record data can be accessed using the following functions:
   492 - RSqlStatement::ColumnType()
   493 - RSqlStatement::ColumnSize()
   494 - RSqlStatement::ColumnInt()
   495 - RSqlStatement::ColumnInt64()
   496 - RSqlStatement::ColumnReal()
   497 - RSqlStatement::ColumnTextL()
   498 - RSqlStatement::ColumnText()
   499 - RSqlStatement::ColumnBinary()
   500 - RSqlStatement::ColumnBinaryL()
   501 
   502 Note that if this call to Next() fails, as indicated by a return code value
   503 other than KSqlAtRow, then calls to these RSqlStatement::Column...() functions
   504 will raise a panic.
   505 
   506 @return KSqlAtRow,      the record data is ready for processing by the caller;
   507         KSqlAtEnd,      there is no more record data;
   508         KSqlErrBusy,    the database file is locked;
   509         KErrNoMemory,   an out of memory condition has occurred - the statement
   510                         will be reset;
   511         KSqlErrGeneral, a run-time error has occured - this function must not
   512                         be called again;        
   513         KSqlErrMisuse,  this function has been called after a previous call
   514                         returned KSqlAtEnd or KSqlErrGeneral.
   515         KSqlErrStmtExpired, the SQL statement has expired (if new functions or
   516                             collating sequences have been registered or if an
   517                             authorizer function has been added or changed);
   518 
   519 @capability None
   520 */	
   521 EXPORT_C TInt RSqlStatement::Next()
   522 	{
   523     SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLSTATEMENT_NEXT_ENTRY, "Entry;0x%X;RSqlStatement::Next", (TUint)this));
   524 	TInt err = Impl().Next();
   525     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLSTATEMENT_NEXT_EXIT, "Exit;0x%X;RSqlStatement::Next;err=%d", (TUint)this, err));
   526 	return err;
   527 	}
   528 
   529 /**
   530 Gets the index (starting from 0) of the parameter with the given name.
   531 
   532 The function does a case insensitive parameter name search.
   533 
   534 For example, if the parameter name is ":Prm", then the ":" prefix cannot
   535 be omitted when you call ParameterIndex().
   536 
   537 This function can be called at any time after the SQL statement has been prepared.
   538 
   539 @param aParameterName The parameter name.
   540 
   541 @return the parameter index value, if successful - this is a non-negative integer value;
   542         KErrNotFound, if no such parameter can be found.
   543         One of the other system-wide error codes may also be returned.
   544 
   545 @capability None
   546 */	
   547 EXPORT_C TInt RSqlStatement::ParameterIndex(const TDesC& aParameterName) const
   548 	{
   549 	return Impl().ParamIndex(aParameterName);
   550 	}
   551 
   552 /**
   553 Gets the number of columns that are to be returned by this SQL statement.
   554 
   555 This function can be called at any time after the SQL statement has been prepared,
   556 but it is useful only for SELECT statements. The column count of any other type of statement is always 0.
   557 
   558 @return The number of columns.
   559 
   560 @capability None
   561 */	
   562 EXPORT_C TInt RSqlStatement::ColumnCount() const
   563 	{
   564 	return Impl().ColumnCount();
   565 	}
   566 	
   567 /**
   568 Gets the index (starting from 0) of the column with the given name.
   569 
   570 The function does a case insensitive column name search.
   571 
   572 This function can be called at any time after the SQL statement has been prepared.
   573 
   574 @param aColumnName The column name.
   575 
   576 @return the column index value, if successful - this is a non-negative integer value;
   577         KErrNotFound, if no such parameter can be found.
   578         One of the other system-wide error codes may also be returned.
   579 
   580 @capability None
   581 */	
   582 EXPORT_C TInt RSqlStatement::ColumnIndex(const TDesC& aColumnName) const
   583 	{
   584 	return Impl().ColumnIndex(aColumnName);
   585 	}
   586 	
   587 /**
   588 Gets the runtime type of the column identified by the specified column index.
   589 
   590 This function returns the actual runtime datatype of the specified column as 
   591 opposed to its declared type.
   592   
   593 Note that the function can only be called after a successful call to Next(),
   594 i.e. after a call to Next() that has completed with a KSqlAtRow return code.
   595 Calling this function after an unsuccessful call to Next() raises a panic.
   596 
   597 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
   598 
   599 @return The column type.
   600 
   601 @see KSqlAtRow
   602 @see TSqlColumnType
   603 @see RSqlStatement::DeclaredColumnType()
   604 @see RSqlStatement::Next()
   605 @see RSqlStatement::ColumnIndex()
   606 
   607 @panic SqlDb 5 Column index out of bounds.
   608 @panic SqlDb 11 Statement cursor not positioned on a row.
   609 
   610 @capability None
   611 */	
   612 EXPORT_C TSqlColumnType RSqlStatement::ColumnType(TInt aColumnIndex) const
   613 	{
   614 	return Impl().ColumnType(aColumnIndex);
   615 	}
   616 
   617 /**
   618 Gets the declared type of the column identified by the specified column index.
   619 
   620 Note that the function can only be called when executing a SELECT query, and 
   621 only after a successful call to Prepare(). 
   622 
   623 This function returns the datatype that the specified column was originally declared to have.
   624 
   625 The declared type of a column is determined according to the following rules:
   626 @code
   627  - if the column type name contains the string "INT", then the declared column type is ESqlInt;
   628  - if the column type name contains any of the strings "CHAR, "TEXT" or "CLOB", then the declared column type is ESqlText;
   629  - if the column type name contains any of the strings "BLOB" or "BINARY", then the declared column type is ESqlBinary;
   630  - if the column type name contains any of the strings "FLOAT", "REAL" or "DOUBLE", then the declared column type is ESqlReal;
   631  - in all other cases the declared column type is assumed to be ESqlInt;
   632 @endcode
   633 
   634 @param aColumnIndex The index value identifying the column. This is 0 for the first column.
   635 @param aColumnType	Output parameter. If the call completes successfully, aColumnType contains the type of the column, one of
   636 					TSqlColumnType enum item values.
   637 
   638 @return KErrNone, the operation completed successfully;
   639         KErrNoMemory, an out of memory condition has occurred.
   640                   One of the other system-wide error codes may also be returned.
   641 
   642 @see TSqlColumnType
   643 @see RSqlStatement::ColumnType()
   644 @see RSqlStatement::ColumnIndex()
   645 
   646 @panic SqlDb 5 Column index out of bounds.
   647 
   648 @capability None
   649 */	
   650 EXPORT_C TInt RSqlStatement::DeclaredColumnType(TInt aColumnIndex, TSqlColumnType& aColumnType) const
   651 	{
   652 	return Impl().DeclaredColumnType(aColumnIndex, aColumnType);
   653 	}
   654 	
   655 	
   656 	
   657 /**
   658 Gets the length of the data for the column identified by the specified column index.
   659 
   660 The length depends on the column type and is normally in bytes, except for
   661 the case where the column type is ESqlText, in which case the function returns
   662 the number of characters.
   663 
   664 In detail, the following table shows the size associated with a column type.
   665 Note that column types are identified by TSqlColumnType enum values.
   666 @code
   667 --------------------------------------------------------------
   668 | Column type | Column Size                                 
   669 --------------------------------------------------------------
   670 | ESqlInt.....|.4                                             
   671 | ESqlInt64...|.8                                             
   672 | ESqlReal....|.8                                             
   673 | ESqlText....|.the number of characters in the unicode string
   674 | ESqlBinary..|.the byte length of the binary data            
   675 | ESqlNull....|.0                                             
   676 --------------------------------------------------------------
   677 @endcode
   678 
   679 Note that the function can only be called after a successful call to Next(),
   680 i.e. after a call to Next() that has completed with a KSqlAtRow return code.
   681 Calling this function after an unsuccessful call to Next() raises a panic.
   682 
   683 @param aColumnIndex The column index value; this is 0 for the first column.
   684 
   685 @return The size of the column, and depends on the type of column.
   686 
   687 @see KSqlAtRow
   688 @see TSqlColumnType
   689 @see RSqlStatement::Next()
   690 @see RSqlStatement::ColumnIndex()                
   691 
   692 @panic SqlDb 5 Column index out of bounds.
   693 @panic SqlDb 11 Statement cursor not positioned on a row
   694 
   695 @capability None
   696 */	
   697 EXPORT_C TInt RSqlStatement::ColumnSize(TInt aColumnIndex) const
   698 	{
   699 	return Impl().ColumnSize(aColumnIndex);
   700 	}
   701 
   702 ////////////////////////////////////////////////////////////////////////////////////////////////////////
   703 ///////////////////////////          Bind<Type>() implemenations           /////////////////////////////
   704 ////////////////////////////////////////////////////////////////////////////////////////////////////////
   705 
   706 /**
   707 Sets the parameter to a NULL value.
   708 
   709 The parameter is identified by the specified index value.
   710 
   711 A parameter value can be set:
   712 - immediately after this SQL statement has been prepared
   713 - after a call to Reset()
   714 
   715 @param aParamIndex The index value identifying the parameter; this is 0 for the first parameter.
   716 
   717 @return KErrNone, the operation completed successfully.
   718                   One of the other system-wide error codes may also be returned.
   719 
   720 @see RSqlStatement::Prepare()
   721 @see RSqlStatement::Reset()                
   722 
   723 @panic SqlDb 5 Parameter index out of bounds.
   724 
   725 @capability None
   726 */	
   727 EXPORT_C TInt RSqlStatement::BindNull(TInt aParamIndex)
   728 	{
   729 	return Impl().BindNull(aParamIndex);
   730 	}
   731 	
   732 /**
   733 Sets the parameter to the specified 32-bit integer value.
   734 
   735 The parameter is identified by the specified index value.
   736 
   737 A parameter value can be set:
   738 - immediately after this SQL statement has been prepared
   739 - after a call to Reset()
   740 
   741 @param aParamIndex The index value identifying the parameter; this is 0 for the first parameter.
   742 @param aParamValue The 32-bit integer value to be assigned to the parameter.
   743 
   744 @return KErrNone, the operation completed successfully;
   745         KErrNoMemory, an out of memory condition has occurred.
   746                   One of the other system-wide error codes may also be returned.
   747 
   748 @see RSqlStatement::Prepare()
   749 @see RSqlStatement::Reset()                
   750 
   751 @panic SqlDb 5 Parameter index out of bounds.
   752 
   753 @capability None
   754 */	
   755 EXPORT_C TInt RSqlStatement::BindInt(TInt aParamIndex, TInt aParamValue)
   756 	{
   757 	return Impl().BindInt(aParamIndex, aParamValue);
   758 	}
   759 	
   760 /**
   761 Sets the parameter to the specified 64-bit integer value.
   762 
   763 The parameter is identified by the specified index value.
   764 
   765 A parameter value can be set:
   766 - immediately after this SQL statement has been prepared
   767 - after a call to Reset()
   768 
   769 @param aParamIndex The index value identifying the parameter; this is 0 for the first parameter.
   770 @param aParamValue The 64-bit integer value to be assigned to the parameter.
   771 
   772 @return KErrNone, the operation completed successfully;
   773         KErrNoMemory, an out of memory condition has occurred.
   774                   One of the other system-wide error codes may also be returned.
   775 
   776 @see RSqlStatement::Prepare()
   777 @see RSqlStatement::Reset()                
   778 
   779 @panic SqlDb 5 Parameter index out of bounds.
   780 
   781 @capability None
   782 */	
   783 EXPORT_C TInt RSqlStatement::BindInt64(TInt aParamIndex, TInt64 aParamValue)
   784 	{
   785 	return Impl().BindInt64(aParamIndex, aParamValue);
   786 	}
   787 	
   788 /**
   789 Sets the parameter to the specified 64-bit floating point value.
   790 
   791 The parameter is identified by the specified index value.
   792 
   793 A parameter value can be set:
   794 - immediately after this SQL statement has been prepared
   795 - after a call to Reset()
   796 
   797 @param aParamIndex The index value identifying the parameter; this is 0 for the first parameter.
   798 @param aParamValue The 64-bit floating point value to be assigned to the parameter.
   799 
   800 @return KErrNone, the operation completed successfully;
   801         KErrNoMemory, an out of memory condition has occurred.
   802                   One of the other system-wide error codes may also be returned.
   803 
   804 @see RSqlStatement::Prepare()
   805 @see RSqlStatement::Reset()                
   806 
   807 @panic SqlDb 5 Parameter index out of bounds.
   808 
   809 @capability None
   810 */	
   811 EXPORT_C TInt RSqlStatement::BindReal(TInt aParamIndex, TReal aParamValue)
   812 	{
   813 	return Impl().BindReal(aParamIndex, aParamValue);
   814 	}
   815 	
   816 /**
   817 Sets the parameter to the specified 16-bit descriptor.
   818 
   819 The parameter is identified by the specified index value.
   820 
   821 A parameter value can be set:
   822 - immediately after this SQL statement has been prepared
   823 - after a call to Reset()
   824 
   825 Note that when the text data to be bound is over 2Mb in size then 
   826 use of the RSqlBlobWriteStream or TSqlBlob class should be considered instead. 
   827 
   828 These classes provide a more RAM-efficient way of writing large amounts of
   829 text data to a database, however no conversions are performed on the text data -
   830 it is simply stored as a stream of bytes. If the text data is part of a record 
   831 to be inserted into a database then BindZeroBlob() should be called on the 
   832 INSERT statement to create a placeholder for the text data, whose content 
   833 can then be written using the above classes.
   834 
   835 @param aParamIndex The index value identifying the parameter; this is 0 for the first parameter.
   836 @param aParamText  The 16-bit descriptor whose content is to be assigned to the parameter.
   837 
   838 @return KErrNone, the operation completed successfully;
   839         KErrNoMemory, an out of memory condition has occurred.
   840                   One of the other system-wide error codes may also be returned.
   841 
   842 @see RSqlStatement::Prepare()
   843 @see RSqlStatement::Reset()
   844 @see RSqlStatement::Next()                
   845 @see RSqlStatement::Exec()  
   846 @see RSqlStatement::BindZeroBlob()  
   847 @see RSqlBlobWriteStream
   848 @see TSqlBlob  
   849 
   850 @panic SqlDb 5 Parameter index out of bounds.
   851 
   852 @capability None
   853 */	
   854 EXPORT_C TInt RSqlStatement::BindText(TInt aParamIndex, const TDesC& aParamText)
   855 	{
   856 	return Impl().BindText(aParamIndex, aParamText);
   857 	}
   858 	
   859 /**
   860 Sets the parameter to the specified 8-bit descriptor.
   861 
   862 The parameter is identified by the specified index value.
   863 
   864 A parameter value can be set:
   865 - immediately after this SQL statement has been prepared
   866 - after a call to Reset()
   867 
   868 Note that when the binary data to be bound is over 2Mb in size then it is 
   869 recommended that the RSqlBlobWriteStream or TSqlBlob class is used instead. 
   870 
   871 These classes provide a more RAM-efficient way of writing large amounts of
   872 binary data to a database. If the binary data is part of a record to be inserted 
   873 into a database then BindZeroBlob() should be called on the INSERT statement to create
   874 a placeholder for the binary data, whose content can then be written using the above classes.
   875 
   876 @param aParamIndex The index value identifying the parameter; this is 0 for the first parameter.
   877 @param aParamData  The 8-bit descriptor whose content is to be assigned to the parameter.
   878 
   879 @return KErrNone, the operation completed successfully;
   880         KErrNoMemory, an out of memory condition has occurred.
   881                   One of the other system-wide error codes may also be returned.
   882 
   883 @see RSqlStatement::Prepare()
   884 @see RSqlStatement::Reset()
   885 @see RSqlStatement::Next()                
   886 @see RSqlStatement::Exec()
   887 @see RSqlStatement::BindZeroBlob()  
   888 @see RSqlBlobWriteStream
   889 @see TSqlBlob  
   890 
   891 @panic SqlDb 5 Parameter index out of bounds.
   892 
   893 @capability None
   894 */	
   895 EXPORT_C TInt RSqlStatement::BindBinary(TInt aParamIndex, const TDesC8& aParamData)
   896 	{
   897 	return Impl().BindBinary(aParamIndex, aParamData);
   898 	}
   899 	
   900 /**
   901 Binds a blob of length aBlobSize bytes that is filled with zeroes.
   902 
   903 The parameter is identified by the specified index value.
   904 
   905 A parameter value can be set:
   906 - immediately after this SQL statement has been prepared
   907 - after a call to Reset()
   908 
   909 A zeroblob acts as a placeholder for a blob whose binary content is later written
   910 using the RSqlBlobWriteStream or TSqlBlob class. 
   911 
   912 Using zeroblobs provides a much more RAM-efficient way of creating large blobs than 
   913 including the blob data in the INSERT statement and it is recommended for blobs that
   914 are over 2Mb in size.
   915 
   916 Note that a zeroblob should be created in a column after which there are no columns 
   917 that contain anything other than zeroblobs or NULLs, otherwise the zeroblob must be 
   918 allocated in full in RAM and its benefit is lost.
   919 
   920 When creating a zeroblob it is recommended, where possible, to create the zeroblob 
   921 and then write the blob content (using the RSqlBlobWriteStream or TSqlBlob class) 
   922 within the same transaction. Otherwise the zeroblob will have to be journalled 
   923 before being written to.
   924 
   925 @param aParamIndex The index value identifying the parameter; this is 0 for the first parameter.
   926 @param aBlobSize  The size in bytes of the blob.
   927 
   928 @return KErrNone, the operation completed successfully;
   929         KErrNoMemory, an out of memory condition has occurred.
   930                   One of the other system-wide error codes may also be returned.
   931 
   932 @see RSqlStatement::Prepare()
   933 @see RSqlStatement::Reset()
   934 @see RSqlStatement::Next()                
   935 @see RSqlStatement::Exec()   
   936 @see RSqlBlobWriteStream
   937 @see TSqlBlob 
   938 
   939 @panic SqlDb 5 Parameter index out of bounds.
   940 
   941 @capability None
   942 */	
   943 EXPORT_C TInt RSqlStatement::BindZeroBlob(TInt aParamIndex, TInt aBlobSize)
   944 	{
   945 	return Impl().BindZeroBlob(aParamIndex, aBlobSize);
   946 	}
   947 
   948 
   949 ////////////////////////////////////////////////////////////////////////////////////////////////////////
   950 ///////////////////////////          Column<Type>() implemenations           ///////////////////////////
   951 ////////////////////////////////////////////////////////////////////////////////////////////////////////
   952 
   953 /**
   954 Tests whether the value of the specified column is NULL.
   955 
   956 The column is identified by the specified index value.
   957 
   958 Note that the function can only be called after a successful call to Next(),
   959 i.e. after a call to Next() that has completed with a KSqlAtRow return code.
   960 Calling this function after an unsuccessful call to Next() raises a panic.
   961 
   962 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
   963 
   964 @return True, if the value of the column is NULL, false otherwise.
   965 
   966 @see KSqlAtRow
   967 @see RSqlStatement::Prepare()
   968 @see RSqlStatement::Next()                
   969 
   970 @panic SqlDb 5 Column index out of bounds.
   971 @panic SqlDb 11 Statement cursor not positioned on a row
   972 
   973 @capability None
   974 */	
   975 EXPORT_C TBool RSqlStatement::IsNull(TInt aColumnIndex) const
   976 	{
   977 	return Impl().ColumnType(aColumnIndex) == ESqlNull;
   978 	}
   979 
   980 /**
   981 Gets the value of the column as a 32-bit integer.
   982 
   983 The column is identified by the specified index value.
   984 
   985 Note that the function can only be called after a successful call to Next(),
   986 i.e. after a call to Next() that has completed with a KSqlAtRow return code.
   987 Calling this function after an unsuccessful call to Next() raises a panic.
   988 
   989 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
   990 
   991 @return The value of the column as a 32-bit integer.
   992 
   993 @see KSqlAtRow
   994 @see RSqlStatement::Prepare()
   995 @see RSqlStatement::Next()                
   996 
   997 @panic SqlDb 5 Column index out of bounds.
   998 @panic SqlDb 11 Statement cursor not positioned on a row
   999 
  1000 @capability None
  1001 */	
  1002 EXPORT_C TInt RSqlStatement::ColumnInt(TInt aColumnIndex) const
  1003 	{
  1004 	return Impl().ColumnInt(aColumnIndex);
  1005 	}
  1006 	
  1007 /**
  1008 Gets the value of the column as a 64-bit integer.
  1009 
  1010 The column is identified by the specified index value.
  1011 
  1012 Note that the function can only be called after a successful call to Next(),
  1013 i.e. after a call to Next() that has completed with a KSqlAtRow return code.
  1014 Calling this function after an unsuccessful call to Next() raises a panic.
  1015 
  1016 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
  1017 
  1018 @return The value of the column as a 64-bit integer.
  1019 
  1020 @see KSqlAtRow
  1021 @see RSqlStatement::Prepare()
  1022 @see RSqlStatement::Next()                
  1023 
  1024 @panic SqlDb 5 Column index out of bounds.
  1025 @panic SqlDb 11 Statement cursor not positioned on a row
  1026 
  1027 @capability None
  1028 */	
  1029 EXPORT_C TInt64 RSqlStatement::ColumnInt64(TInt aColumnIndex) const
  1030 	{
  1031 	return Impl().ColumnInt64(aColumnIndex);
  1032 	}
  1033 	
  1034 /**
  1035 Gets the value of the column as a 64-bit floating point value.
  1036 
  1037 The column is identified by the specified index value.
  1038 
  1039 Note that the function can only be called after a successful call to Next(),
  1040 i.e. after a call to Next() that has completed with a KSqlAtRow return code.
  1041 Calling this function after an unsuccessful call to Next() raises a panic.
  1042 
  1043 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
  1044 
  1045 @return The value of the column as a 64-bit floating point value.
  1046 
  1047 @see KSqlAtRow
  1048 @see RSqlStatement::Prepare()
  1049 @see RSqlStatement::Next()                
  1050 
  1051 @panic SqlDb 5 Column index out of bounds.
  1052 @panic SqlDb 11 Statement cursor not positioned on a row
  1053 
  1054 @capability None
  1055 */	
  1056 EXPORT_C TReal RSqlStatement::ColumnReal(TInt aColumnIndex) const
  1057 	{
  1058 	return Impl().ColumnReal(aColumnIndex);
  1059 	}
  1060 
  1061 ////////////////////////////////////////////////////////////////////////////////////////////////////////
  1062 ///////////////////////////          ColumnText ()           ///////////////////////////////////////////
  1063 ////////////////////////////////////////////////////////////////////////////////////////////////////////
  1064 
  1065 /**
  1066 Gets the value of the column as a 16-bit descriptor (leaves on failure).
  1067 
  1068 The column is identified by the specified index value.
  1069 
  1070 Note that the function can only be called after a successful call to Next(),
  1071 i.e. after a call to Next() that has completed with a KSqlAtRow return code.
  1072 Calling this function after an unsuccessful call to Next() raises a panic.
  1073 
  1074 Note that when the text to be retrieved is over 2Mb in size then it is 
  1075 recommended that the RSqlBlobReadStream or TSqlBlob class is used instead. 
  1076 These classes provide a more RAM-efficient way of retrieving large amounts 
  1077 of text data from a database.
  1078 
  1079 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
  1080 
  1081 @return A non-modifiable pointer descriptor representing the 16-bit column text.
  1082 
  1083 @leave KErrNoMemory if the operation for retrieving the column value from the server
  1084                     fails with an out of memory condition.
  1085 
  1086 @see KSqlAtRow
  1087 @see RSqlStatement::ColumnText()
  1088 @see RSqlStatement::Prepare()
  1089 @see RSqlStatement::Next() 
  1090 @see RSqlBlobReadStream
  1091 @see TSqlBlob 
  1092 
  1093 @panic SqlDb 5 Column index out of bounds.
  1094 @panic SqlDb 11 Statement cursor not positioned on a row
  1095 
  1096 @capability None
  1097 */
  1098 EXPORT_C TPtrC RSqlStatement::ColumnTextL(TInt aColumnIndex) const
  1099 	{
  1100 	TPtrC res;
  1101 	__SQLLEAVE_IF_ERROR(Impl().ColumnText(aColumnIndex, res));
  1102 	return res;
  1103 	}
  1104 
  1105 /**
  1106 Gets the value of the column as a 16-bit descriptor.
  1107 
  1108 The column is identified by the specified index value.
  1109 
  1110 Note that the function can only be called after a successful call to Next(),
  1111 i.e. after a call to Next() that has completed with a KSqlAtRow return code.
  1112 Calling this function after an unsuccessful call to Next() raises a panic.
  1113 
  1114 Note that when the text to be retrieved is over 2Mb in size then it is 
  1115 recommended that the RSqlBlobReadStream or TSqlBlob class is used instead. 
  1116 These classes provide a more RAM-efficient way of retrieving large amounts 
  1117 of text data from a database.
  1118 
  1119 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
  1120 @param aPtr         A non-modifiable pointer descriptor. On successful completion of this
  1121                     function, the pointer descriptor represents the 16-bit column text.
  1122                     The descriptor does not change if the function fails.
  1123 
  1124 @return KErrNone, if the function completes successfully,
  1125                   otherwise one of the other system-wide error codes.
  1126 
  1127 @see KSqlAtRow
  1128 @see RSqlStatement::ColumnTextL()
  1129 @see RSqlStatement::Prepare()
  1130 @see RSqlStatement::Next()   
  1131 @see RSqlBlobReadStream
  1132 @see TSqlBlob
  1133 
  1134 @panic SqlDb 5 Column index out of bounds.
  1135 @panic SqlDb 11 Statement cursor not positioned on a row
  1136 
  1137 @capability None
  1138 */	
  1139 EXPORT_C TInt RSqlStatement::ColumnText(TInt aColumnIndex, TPtrC& aPtr) const
  1140 	{
  1141 	return Impl().ColumnText(aColumnIndex, aPtr);
  1142 	}
  1143 	
  1144 /**
  1145 Interprets the value of the column as a 16-bit descriptor, and copies the data
  1146 into a 16-bit modifiable descriptor supplied by the caller.
  1147 
  1148 The column is identified by the specified index value.
  1149 
  1150 Note that the function can only be called after a successful call to Next(),
  1151 i.e. after a call to Next() that has completed with a KSqlAtRow return code.
  1152 Calling this function after an unsuccessful call to Next() raises a panic.
  1153 
  1154 Note that when the text to be retrieved is over 2Mb in size then it is 
  1155 recommended that the RSqlBlobReadStream or TSqlBlob class is used instead. 
  1156 These classes provide a more RAM-efficient way of retrieving large amounts 
  1157 of text data from a database.
  1158 
  1159 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
  1160 @param aDest        A 16-bit modifiable descriptor into which the column data is to be copied.
  1161 
  1162 @return KErrNone,     the operation has completed successfully;
  1163         KErrOverflow, the maximum length of the target descriptor supplied by
  1164                       the caller (aDest) is less than the length of
  1165                       the column text - the column data
  1166                       is truncated to fit into the target descriptor.
  1167         KErrNoMemory, an out of memory condition has occurred.
  1168 
  1169 @see KSqlAtRow
  1170 @see RSqlStatement::Prepare()
  1171 @see RSqlStatement::Next()   
  1172 @see RSqlBlobReadStream
  1173 @see TSqlBlob
  1174 
  1175 @panic SqlDb 5 Column index out of bounds.
  1176 @panic SqlDb 11 Statement cursor not positioned on a row
  1177 
  1178 @capability None
  1179 */	
  1180 EXPORT_C TInt RSqlStatement::ColumnText(TInt aColumnIndex, TDes& aDest) const
  1181 	{
  1182 	return Impl().ColumnText(aColumnIndex, aDest);
  1183 	}
  1184 
  1185 ////////////////////////////////////////////////////////////////////////////////////////////////////////
  1186 ///////////////////////////          ColumnBinary ()           /////////////////////////////////////////
  1187 ////////////////////////////////////////////////////////////////////////////////////////////////////////
  1188 	
  1189 /**
  1190 Gets the value of the column as an 8-bit descriptor (leaves on failure).
  1191 
  1192 The column is identified by the specified index value.
  1193 
  1194 Note that the function can only be called after a successful call to Next(),
  1195 i.e. after a call to Next() that has completed with a KSqlAtRow return code.
  1196 Calling this function after an unsuccessful call to Next() raises a panic.
  1197 
  1198 Note that when the binary data to be retrieved is over 2Mb in size then it 
  1199 is recommended that the RSqlBlobReadStream or TSqlBlob class is used instead. 
  1200 These classes provide a more RAM-efficient way of retrieving large amounts 
  1201 of binary data from a database.
  1202 
  1203 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
  1204 
  1205 @return A non-modifiable pointer descriptor representing the 8-bit column data.
  1206 
  1207 @leave KErrNoMemory if the operation for retrieving the column value from the server
  1208                     fails with an out of memory condition.
  1209 
  1210 @see KSqlAtRow
  1211 @see RSqlStatement::ColumnBinary()
  1212 @see RSqlStatement::Prepare()
  1213 @see RSqlStatement::Next()   
  1214 @see RSqlBlobReadStream
  1215 @see TSqlBlob
  1216 
  1217 @panic SqlDb 5 Column index out of bounds.
  1218 @panic SqlDb 11 Statement cursor not positioned on a row
  1219 
  1220 @capability None
  1221 */
  1222 EXPORT_C TPtrC8 RSqlStatement::ColumnBinaryL(TInt aColumnIndex) const
  1223 	{
  1224 	TPtrC8 res;
  1225 	__SQLLEAVE_IF_ERROR(Impl().ColumnBinary(aColumnIndex, res));
  1226 	return res;
  1227 	}
  1228 
  1229 /**
  1230 Gets the value of the column as an 8-bit descriptor.
  1231 
  1232 The column is identified by the specified index value.
  1233 
  1234 Note that the function can only be called after a successful call to Next(),
  1235 i.e. after a call to Next() that has completed with a KSqlAtRow return code.
  1236 Calling this function after an unsuccessful call to Next() raises a panic.
  1237 
  1238 Note that when the binary data to be retrieved is over 2Mb in size then it 
  1239 is recommended that the RSqlBlobReadStream or TSqlBlob class is used instead. 
  1240 These classes provide a more RAM-efficient way of retrieving large amounts 
  1241 of binary data from a database.
  1242 
  1243 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
  1244 @param aPtr         A non-modifiable pointer descriptor. On successful completion of this
  1245                     function, the pointer descriptor represents the 8-bit column data.
  1246                     The descriptor does not change if the function fails.
  1247 
  1248 @return KErrNone, if the function completes successfully,
  1249                   otherwise one of the other system-wide error codes.
  1250 
  1251 @see KSqlAtRow
  1252 @see RSqlStatement::ColumnBinaryL()
  1253 @see RSqlStatement::Prepare()
  1254 @see RSqlStatement::Next()   
  1255 @see RSqlBlobReadStream
  1256 @see TSqlBlob
  1257 
  1258 @panic SqlDb 5 Column index out of bounds.
  1259 @panic SqlDb 11 Statement cursor not positioned on a row
  1260 
  1261 @capability None
  1262 */	
  1263 EXPORT_C TInt RSqlStatement::ColumnBinary(TInt aColumnIndex, TPtrC8& aPtr) const
  1264 	{
  1265    	return Impl().ColumnBinary(aColumnIndex, aPtr);
  1266 	}
  1267 	
  1268 /**
  1269 Interprets the value of the column as an 8-bit descriptor, and copies the data
  1270 into an 8-bit modifiable descriptor supplied by the caller.
  1271 
  1272 The column is identified by the specified index value.
  1273 
  1274 Note that the function can only be called after a successful call to Next(),
  1275 i.e. after a call to Next() that has completed with a KSqlAtRow return code.
  1276 Calling this function after an unsuccessful call to Next() raises a panic.
  1277 
  1278 Note that when the binary data to be retrieved is over 2Mb in size then it 
  1279 is recommended that the RSqlBlobReadStream or TSqlBlob class is used instead. 
  1280 These classes provide a more RAM-efficient way of retrieving large amounts 
  1281 of binary data from a database.
  1282 
  1283 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
  1284 @param aDest        An 8-bit modifiable descriptor into which the column data is to be copied.
  1285 
  1286 @return KErrNone,     the operation has completed successfully;
  1287         KErrOverflow, the maximum length of the target descriptor supplied by
  1288                       the caller (aDest) is less than the length of
  1289                       the column data - the column data
  1290                       is truncated to fit into the target descriptor.
  1291         KErrNoMemory, an out of memory condition has occurred.
  1292 
  1293 @see KSqlAtRow
  1294 @see RSqlStatement::Prepare()
  1295 @see RSqlStatement::Next()   
  1296 @see RSqlBlobReadStream
  1297 @see TSqlBlob
  1298 
  1299 @panic SqlDb 5 Column index out of bounds.
  1300 @panic SqlDb 11 Statement cursor not positioned on a row
  1301 
  1302 @capability None
  1303 */	
  1304 EXPORT_C TInt RSqlStatement::ColumnBinary(TInt aColumnIndex, TDes8& aDest) const
  1305 	{
  1306    	return Impl().ColumnBinary(aColumnIndex, aDest);
  1307 	}
  1308 
  1309 /**
  1310 Obtain the name of a column after preparing a query.
  1311 
  1312 @param aColumnIndex Column index
  1313 @param aNameDest Descriptor which will be set to column name
  1314 @return KErrNone if successfull or one of the system-wide error codes on error
  1315 @capability None
  1316 */
  1317 EXPORT_C TInt RSqlStatement::ColumnName(TInt aColumnIndex, TPtrC& aNameDest)
  1318 	{
  1319 	return Impl().ColumnName(aColumnIndex, aNameDest);
  1320 	}
  1321 
  1322 /**
  1323 Obtain the name of a parameter after preparing a DML query.
  1324 The parameter names are returned in exactly the same form as
  1325 supplied in SQL statement. For example, if the parameter name is ":Prm", 
  1326 then the ":" prefix will not be omitted.
  1327 
  1328 This function can be called at any time after the DML SQL statement has been prepared.
  1329 
  1330 @param aParameterIndex Parameter index
  1331 @param aNameDest Descriptor which will be set to column name
  1332 @return KErrNone if successfull or one of the system-wide error codes on error
  1333 @capability None
  1334 */
  1335 EXPORT_C TInt RSqlStatement::ParameterName(TInt aParameterIndex, TPtrC& aNameDest)
  1336 	{
  1337 	return Impl().ParameterName(aParameterIndex, aNameDest);
  1338 	}
  1339 
  1340 /**
  1341 Obtain the name of a parameter after preparing a DML query.
  1342 The parameter names are returned in exactly the same form as
  1343 supplied in SQL statement. For example, if the parameter name is ":Prm", 
  1344 then the ":" prefix will not be omitted.
  1345 
  1346 ParamName has the same behaviour as ParameterName. It is provided to maintain
  1347 source compatibility with previous Symbian releases.
  1348 
  1349 This function can be called at any time after the DML SQL statement has 
  1350 been prepared.
  1351 
  1352 @param aParameterIndex Parameter index
  1353 @param aNameDest Descriptor which will be set to parameter name
  1354 @return KErrNone if successful or one of the system-wide error codes on error
  1355 @capability None
  1356 */
  1357 EXPORT_C TInt RSqlStatement::ParamName(TInt aParameterIndex, TPtrC& aNameDest)
  1358 	{
  1359 	return ParameterName(aParameterIndex, aNameDest);
  1360 	}
  1361 
  1362 ////////////////////////////////////////////////////////////////////////////////////////////////////////
  1363 ////////////////////////////////////////////////////////////////////////////////////////////////////////
  1364 ////////////////////////////////////////////////////////////////////////////////////////////////////////
  1365 	
  1366 /**
  1367 Returns a reference to the implementation object of RSqlStatement - CSqlStatementImpl.
  1368 
  1369 @panic SqlDb 2  The SQL statement has not been prepared,
  1370                 i.e. Prepare() has not yet been called on this RSqlStatement object.
  1371 
  1372 @internalComponent
  1373 */
  1374 CSqlStatementImpl& RSqlStatement::Impl() const
  1375 	{
  1376 	__ASSERT_ALWAYS(iImpl != NULL, __SQLPANIC(ESqlPanicInvalidObj));
  1377 	return *iImpl;	
  1378 	}