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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "SqlStatementImpl.h" //CSqlStatementImpl
17 #include "OstTraceDefinitions.h"
18 #ifdef OST_TRACE_COMPILER_IN_USE
19 #include "SqlStatementTraces.h"
21 #include "SqlTraceDef.h"
23 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
26 Initialises the pointer to the implementation object to NULL.
30 EXPORT_C RSqlStatement::RSqlStatement() :
36 Prepares the supplied 16-bit SQL statement for execution.
38 An RSqlStatement object can prepare and execute a parameterised SQL statement or
39 an SQL statement without parameters.
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.
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.
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.
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
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.
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;
76 @see TSqlRetCodeClass::ESqlDbError
78 @see RSqlDatabase::LastErrorMessage()
79 @see RSqlSecurityPolicy
80 @see RSqlSecurityPolicy::TPolicyType
81 @see RSqlBlobReadStream
82 @see RSqlBlobWriteStream
85 EXPORT_C TInt RSqlStatement::Prepare(RSqlDatabase& aDatabase, const TDesC& aSqlStmt)
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));
94 Prepares the supplied 8-bit SQL statement for execution.
96 An RSqlStatement object can prepare and execute a parameterised SQL statement or
97 an SQL statement without parameters.
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.
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.
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.
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.
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;
135 @see TSqlRetCodeClass::ESqlDbError
137 @see RSqlDatabase::LastErrorMessage()
138 @see RSqlSecurityPolicy
139 @see RSqlSecurityPolicy::TPolicyType
140 @see RSqlBlobReadStream
141 @see RSqlBlobWriteStream
144 EXPORT_C TInt RSqlStatement::Prepare(RSqlDatabase& aDatabase, const TDesC8& aSqlStmt)
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));
154 Prepares the supplied 16-bit SQL statement for execution.
156 An RSqlStatement object can prepare and execute a parameterised SQL statement or
157 an SQL statement without parameters.
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.
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.
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.
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.
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;
193 @see TSqlRetCodeClass::ESqlDbError
195 @see RSqlDatabase::LastErrorMessage()
196 @see RSqlSecurityPolicy
197 @see RSqlSecurityPolicy::TPolicyType
198 @see RSqlBlobReadStream
199 @see RSqlBlobWriteStream
202 EXPORT_C void RSqlStatement::PrepareL(RSqlDatabase& aDatabase, const TDesC& aSqlStmt)
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));
210 Prepares the supplied 8-bit SQL statement for execution.
212 An RSqlStatement object can prepare and execute a parameterised SQL statement or
213 an SQL statement without parameters.
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.
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.
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.
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.
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;
250 @see TSqlRetCodeClass::ESqlDbError
252 @see RSqlDatabase::LastErrorMessage()
253 @see RSqlSecurityPolicy
254 @see RSqlSecurityPolicy::TPolicyType
255 @see RSqlBlobReadStream
256 @see RSqlBlobWriteStream
259 EXPORT_C void RSqlStatement::PrepareL(RSqlDatabase& aDatabase, const TDesC8& aSqlStmt)
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));
269 Closes this SQL statement object.
271 The function frees memory and any allocated resources.
273 @see RSqlStatement::Prepare()
277 EXPORT_C void RSqlStatement::Close()
279 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLSTATEMENT_CLOSE_ENTRY, "Entry;0x%X;RSqlStatement::Close;iImpl=0x%X", (TUint)this, (TUint)iImpl));
281 SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLSTATEMENT_CLOSE_EXIT, "Exit;0x%X;RSqlStatement::Close;iImpl=0x%X", (TUint)this, (TUint)iImpl));
286 Tests whether the SQL statement points to a valid record.
288 @return True, if the SQL statement points to a valid record, false otherwise.
292 EXPORT_C TBool RSqlStatement::AtRow() const
294 return Impl().AtRow();
298 Resets the prepared SQL statement to its initial state and makes it ready to be
301 Any SQL statement parameters that had values bound to them, retain their values.
303 If this object processes a parameterised SQL statement, then the parameter
304 values can be bound after the call to Reset().
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().
315 TInt err = stmt.Prepare(<database>, <SQL statement>);
318 err = stmt.Bind<parameter type>(<parameter index>, <value>);
331 TInt err = stmt.Prepare(<database>, <SQL statement>);
334 err = stmt.Bind<parameter type>(<parameter index>, <value>);
336 while((err = stmt.Next()) == KSqlAtRow)
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)
350 @see TSqlRetCodeClass::ESqlDbError
351 @see RSqlDatabase::LastErrorMessage()
355 EXPORT_C TInt RSqlStatement::Reset()
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));
364 Executes the prepared DDL/DML SQL statement.
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.
371 - parameter values must be bound before calling Exec().
372 - SQL statements that do not have parameters should use RSqlDatabase::Exec() instead.
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().
382 TInt err = stmt.Prepare(<database>, <SQL statement>);
385 err = stmt.Bind<parameter type>(<parameter index>, <value>);
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
407 Note that database specific errors categorised as ESqlDbError
408 can also be returned.
410 @see TSqlRetCodeClass::ESqlDbError
411 @see RSqlStatement::Prepare()
412 @see RSqlDatabase::Exec()
413 @see RSqlDatabase::LastErrorMessage()
417 EXPORT_C TInt RSqlStatement::Exec()
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));
426 Executes the prepared DDL/DML SQL statement asynchronously to allow client to avoid being blocked
429 No other operations can be performed on current RSqlStatement object
430 until the asynchronous operation completes.
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.
437 - parameter values must be bound before calling Exec().
438 - SQL statements that do not have parameters should use RSqlDatabase::Exec() instead.
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().
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
459 Note that aStatus may be set with database specific errors categorised as ESqlDbError,
460 and other system-wide error codes.
463 @see TSqlRetCodeClass::ESqlDbError
464 @see RSqlStatement::Prepare()
465 @see RSqlDatabase::Exec()
466 @see RSqlDatabase::LastErrorMessage()
470 EXPORT_C void RSqlStatement::Exec(TRequestStatus& aStatus)
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()));
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.
483 If the SQL statement contains parameters, then their values must be bound before
484 this function is called.
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.
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()
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
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
511 KSqlErrGeneral, a run-time error has occured - this function must not
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);
521 EXPORT_C TInt RSqlStatement::Next()
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));
530 Gets the index (starting from 0) of the parameter with the given name.
532 The function does a case insensitive parameter name search.
534 For example, if the parameter name is ":Prm", then the ":" prefix cannot
535 be omitted when you call ParameterIndex().
537 This function can be called at any time after the SQL statement has been prepared.
539 @param aParameterName The parameter name.
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.
547 EXPORT_C TInt RSqlStatement::ParameterIndex(const TDesC& aParameterName) const
549 return Impl().ParamIndex(aParameterName);
553 Gets the number of columns that are to be returned by this SQL statement.
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.
558 @return The number of columns.
562 EXPORT_C TInt RSqlStatement::ColumnCount() const
564 return Impl().ColumnCount();
568 Gets the index (starting from 0) of the column with the given name.
570 The function does a case insensitive column name search.
572 This function can be called at any time after the SQL statement has been prepared.
574 @param aColumnName The column name.
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.
582 EXPORT_C TInt RSqlStatement::ColumnIndex(const TDesC& aColumnName) const
584 return Impl().ColumnIndex(aColumnName);
588 Gets the runtime type of the column identified by the specified column index.
590 This function returns the actual runtime datatype of the specified column as
591 opposed to its declared type.
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.
597 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
599 @return The column type.
603 @see RSqlStatement::DeclaredColumnType()
604 @see RSqlStatement::Next()
605 @see RSqlStatement::ColumnIndex()
607 @panic SqlDb 5 Column index out of bounds.
608 @panic SqlDb 11 Statement cursor not positioned on a row.
612 EXPORT_C TSqlColumnType RSqlStatement::ColumnType(TInt aColumnIndex) const
614 return Impl().ColumnType(aColumnIndex);
618 Gets the declared type of the column identified by the specified column index.
620 Note that the function can only be called when executing a SELECT query, and
621 only after a successful call to Prepare().
623 This function returns the datatype that the specified column was originally declared to have.
625 The declared type of a column is determined according to the following rules:
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;
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.
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.
643 @see RSqlStatement::ColumnType()
644 @see RSqlStatement::ColumnIndex()
646 @panic SqlDb 5 Column index out of bounds.
650 EXPORT_C TInt RSqlStatement::DeclaredColumnType(TInt aColumnIndex, TSqlColumnType& aColumnType) const
652 return Impl().DeclaredColumnType(aColumnIndex, aColumnType);
658 Gets the length of the data for the column identified by the specified column index.
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.
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.
667 --------------------------------------------------------------
668 | Column type | Column Size
669 --------------------------------------------------------------
673 | ESqlText....|.the number of characters in the unicode string
674 | ESqlBinary..|.the byte length of the binary data
676 --------------------------------------------------------------
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.
683 @param aColumnIndex The column index value; this is 0 for the first column.
685 @return The size of the column, and depends on the type of column.
689 @see RSqlStatement::Next()
690 @see RSqlStatement::ColumnIndex()
692 @panic SqlDb 5 Column index out of bounds.
693 @panic SqlDb 11 Statement cursor not positioned on a row
697 EXPORT_C TInt RSqlStatement::ColumnSize(TInt aColumnIndex) const
699 return Impl().ColumnSize(aColumnIndex);
702 ////////////////////////////////////////////////////////////////////////////////////////////////////////
703 /////////////////////////// Bind<Type>() implemenations /////////////////////////////
704 ////////////////////////////////////////////////////////////////////////////////////////////////////////
707 Sets the parameter to a NULL value.
709 The parameter is identified by the specified index value.
711 A parameter value can be set:
712 - immediately after this SQL statement has been prepared
713 - after a call to Reset()
715 @param aParamIndex The index value identifying the parameter; this is 0 for the first parameter.
717 @return KErrNone, the operation completed successfully.
718 One of the other system-wide error codes may also be returned.
720 @see RSqlStatement::Prepare()
721 @see RSqlStatement::Reset()
723 @panic SqlDb 5 Parameter index out of bounds.
727 EXPORT_C TInt RSqlStatement::BindNull(TInt aParamIndex)
729 return Impl().BindNull(aParamIndex);
733 Sets the parameter to the specified 32-bit integer value.
735 The parameter is identified by the specified index value.
737 A parameter value can be set:
738 - immediately after this SQL statement has been prepared
739 - after a call to Reset()
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.
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.
748 @see RSqlStatement::Prepare()
749 @see RSqlStatement::Reset()
751 @panic SqlDb 5 Parameter index out of bounds.
755 EXPORT_C TInt RSqlStatement::BindInt(TInt aParamIndex, TInt aParamValue)
757 return Impl().BindInt(aParamIndex, aParamValue);
761 Sets the parameter to the specified 64-bit integer value.
763 The parameter is identified by the specified index value.
765 A parameter value can be set:
766 - immediately after this SQL statement has been prepared
767 - after a call to Reset()
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.
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.
776 @see RSqlStatement::Prepare()
777 @see RSqlStatement::Reset()
779 @panic SqlDb 5 Parameter index out of bounds.
783 EXPORT_C TInt RSqlStatement::BindInt64(TInt aParamIndex, TInt64 aParamValue)
785 return Impl().BindInt64(aParamIndex, aParamValue);
789 Sets the parameter to the specified 64-bit floating point value.
791 The parameter is identified by the specified index value.
793 A parameter value can be set:
794 - immediately after this SQL statement has been prepared
795 - after a call to Reset()
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.
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.
804 @see RSqlStatement::Prepare()
805 @see RSqlStatement::Reset()
807 @panic SqlDb 5 Parameter index out of bounds.
811 EXPORT_C TInt RSqlStatement::BindReal(TInt aParamIndex, TReal aParamValue)
813 return Impl().BindReal(aParamIndex, aParamValue);
817 Sets the parameter to the specified 16-bit descriptor.
819 The parameter is identified by the specified index value.
821 A parameter value can be set:
822 - immediately after this SQL statement has been prepared
823 - after a call to Reset()
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.
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.
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.
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.
842 @see RSqlStatement::Prepare()
843 @see RSqlStatement::Reset()
844 @see RSqlStatement::Next()
845 @see RSqlStatement::Exec()
846 @see RSqlStatement::BindZeroBlob()
847 @see RSqlBlobWriteStream
850 @panic SqlDb 5 Parameter index out of bounds.
854 EXPORT_C TInt RSqlStatement::BindText(TInt aParamIndex, const TDesC& aParamText)
856 return Impl().BindText(aParamIndex, aParamText);
860 Sets the parameter to the specified 8-bit descriptor.
862 The parameter is identified by the specified index value.
864 A parameter value can be set:
865 - immediately after this SQL statement has been prepared
866 - after a call to Reset()
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.
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.
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.
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.
883 @see RSqlStatement::Prepare()
884 @see RSqlStatement::Reset()
885 @see RSqlStatement::Next()
886 @see RSqlStatement::Exec()
887 @see RSqlStatement::BindZeroBlob()
888 @see RSqlBlobWriteStream
891 @panic SqlDb 5 Parameter index out of bounds.
895 EXPORT_C TInt RSqlStatement::BindBinary(TInt aParamIndex, const TDesC8& aParamData)
897 return Impl().BindBinary(aParamIndex, aParamData);
901 Binds a blob of length aBlobSize bytes that is filled with zeroes.
903 The parameter is identified by the specified index value.
905 A parameter value can be set:
906 - immediately after this SQL statement has been prepared
907 - after a call to Reset()
909 A zeroblob acts as a placeholder for a blob whose binary content is later written
910 using the RSqlBlobWriteStream or TSqlBlob class.
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.
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.
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.
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.
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.
932 @see RSqlStatement::Prepare()
933 @see RSqlStatement::Reset()
934 @see RSqlStatement::Next()
935 @see RSqlStatement::Exec()
936 @see RSqlBlobWriteStream
939 @panic SqlDb 5 Parameter index out of bounds.
943 EXPORT_C TInt RSqlStatement::BindZeroBlob(TInt aParamIndex, TInt aBlobSize)
945 return Impl().BindZeroBlob(aParamIndex, aBlobSize);
949 ////////////////////////////////////////////////////////////////////////////////////////////////////////
950 /////////////////////////// Column<Type>() implemenations ///////////////////////////
951 ////////////////////////////////////////////////////////////////////////////////////////////////////////
954 Tests whether the value of the specified column is NULL.
956 The column is identified by the specified index value.
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.
962 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
964 @return True, if the value of the column is NULL, false otherwise.
967 @see RSqlStatement::Prepare()
968 @see RSqlStatement::Next()
970 @panic SqlDb 5 Column index out of bounds.
971 @panic SqlDb 11 Statement cursor not positioned on a row
975 EXPORT_C TBool RSqlStatement::IsNull(TInt aColumnIndex) const
977 return Impl().ColumnType(aColumnIndex) == ESqlNull;
981 Gets the value of the column as a 32-bit integer.
983 The column is identified by the specified index value.
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.
989 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
991 @return The value of the column as a 32-bit integer.
994 @see RSqlStatement::Prepare()
995 @see RSqlStatement::Next()
997 @panic SqlDb 5 Column index out of bounds.
998 @panic SqlDb 11 Statement cursor not positioned on a row
1002 EXPORT_C TInt RSqlStatement::ColumnInt(TInt aColumnIndex) const
1004 return Impl().ColumnInt(aColumnIndex);
1008 Gets the value of the column as a 64-bit integer.
1010 The column is identified by the specified index value.
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.
1016 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
1018 @return The value of the column as a 64-bit integer.
1021 @see RSqlStatement::Prepare()
1022 @see RSqlStatement::Next()
1024 @panic SqlDb 5 Column index out of bounds.
1025 @panic SqlDb 11 Statement cursor not positioned on a row
1029 EXPORT_C TInt64 RSqlStatement::ColumnInt64(TInt aColumnIndex) const
1031 return Impl().ColumnInt64(aColumnIndex);
1035 Gets the value of the column as a 64-bit floating point value.
1037 The column is identified by the specified index value.
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.
1043 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
1045 @return The value of the column as a 64-bit floating point value.
1048 @see RSqlStatement::Prepare()
1049 @see RSqlStatement::Next()
1051 @panic SqlDb 5 Column index out of bounds.
1052 @panic SqlDb 11 Statement cursor not positioned on a row
1056 EXPORT_C TReal RSqlStatement::ColumnReal(TInt aColumnIndex) const
1058 return Impl().ColumnReal(aColumnIndex);
1061 ////////////////////////////////////////////////////////////////////////////////////////////////////////
1062 /////////////////////////// ColumnText () ///////////////////////////////////////////
1063 ////////////////////////////////////////////////////////////////////////////////////////////////////////
1066 Gets the value of the column as a 16-bit descriptor (leaves on failure).
1068 The column is identified by the specified index value.
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.
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.
1079 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
1081 @return A non-modifiable pointer descriptor representing the 16-bit column text.
1083 @leave KErrNoMemory if the operation for retrieving the column value from the server
1084 fails with an out of memory condition.
1087 @see RSqlStatement::ColumnText()
1088 @see RSqlStatement::Prepare()
1089 @see RSqlStatement::Next()
1090 @see RSqlBlobReadStream
1093 @panic SqlDb 5 Column index out of bounds.
1094 @panic SqlDb 11 Statement cursor not positioned on a row
1098 EXPORT_C TPtrC RSqlStatement::ColumnTextL(TInt aColumnIndex) const
1101 __SQLLEAVE_IF_ERROR(Impl().ColumnText(aColumnIndex, res));
1106 Gets the value of the column as a 16-bit descriptor.
1108 The column is identified by the specified index value.
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.
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.
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.
1124 @return KErrNone, if the function completes successfully,
1125 otherwise one of the other system-wide error codes.
1128 @see RSqlStatement::ColumnTextL()
1129 @see RSqlStatement::Prepare()
1130 @see RSqlStatement::Next()
1131 @see RSqlBlobReadStream
1134 @panic SqlDb 5 Column index out of bounds.
1135 @panic SqlDb 11 Statement cursor not positioned on a row
1139 EXPORT_C TInt RSqlStatement::ColumnText(TInt aColumnIndex, TPtrC& aPtr) const
1141 return Impl().ColumnText(aColumnIndex, aPtr);
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.
1148 The column is identified by the specified index value.
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.
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.
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.
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.
1170 @see RSqlStatement::Prepare()
1171 @see RSqlStatement::Next()
1172 @see RSqlBlobReadStream
1175 @panic SqlDb 5 Column index out of bounds.
1176 @panic SqlDb 11 Statement cursor not positioned on a row
1180 EXPORT_C TInt RSqlStatement::ColumnText(TInt aColumnIndex, TDes& aDest) const
1182 return Impl().ColumnText(aColumnIndex, aDest);
1185 ////////////////////////////////////////////////////////////////////////////////////////////////////////
1186 /////////////////////////// ColumnBinary () /////////////////////////////////////////
1187 ////////////////////////////////////////////////////////////////////////////////////////////////////////
1190 Gets the value of the column as an 8-bit descriptor (leaves on failure).
1192 The column is identified by the specified index value.
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.
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.
1203 @param aColumnIndex The index value identifying the column; this is 0 for the first column.
1205 @return A non-modifiable pointer descriptor representing the 8-bit column data.
1207 @leave KErrNoMemory if the operation for retrieving the column value from the server
1208 fails with an out of memory condition.
1211 @see RSqlStatement::ColumnBinary()
1212 @see RSqlStatement::Prepare()
1213 @see RSqlStatement::Next()
1214 @see RSqlBlobReadStream
1217 @panic SqlDb 5 Column index out of bounds.
1218 @panic SqlDb 11 Statement cursor not positioned on a row
1222 EXPORT_C TPtrC8 RSqlStatement::ColumnBinaryL(TInt aColumnIndex) const
1225 __SQLLEAVE_IF_ERROR(Impl().ColumnBinary(aColumnIndex, res));
1230 Gets the value of the column as an 8-bit descriptor.
1232 The column is identified by the specified index value.
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.
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.
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.
1248 @return KErrNone, if the function completes successfully,
1249 otherwise one of the other system-wide error codes.
1252 @see RSqlStatement::ColumnBinaryL()
1253 @see RSqlStatement::Prepare()
1254 @see RSqlStatement::Next()
1255 @see RSqlBlobReadStream
1258 @panic SqlDb 5 Column index out of bounds.
1259 @panic SqlDb 11 Statement cursor not positioned on a row
1263 EXPORT_C TInt RSqlStatement::ColumnBinary(TInt aColumnIndex, TPtrC8& aPtr) const
1265 return Impl().ColumnBinary(aColumnIndex, aPtr);
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.
1272 The column is identified by the specified index value.
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.
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.
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.
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.
1294 @see RSqlStatement::Prepare()
1295 @see RSqlStatement::Next()
1296 @see RSqlBlobReadStream
1299 @panic SqlDb 5 Column index out of bounds.
1300 @panic SqlDb 11 Statement cursor not positioned on a row
1304 EXPORT_C TInt RSqlStatement::ColumnBinary(TInt aColumnIndex, TDes8& aDest) const
1306 return Impl().ColumnBinary(aColumnIndex, aDest);
1310 Obtain the name of a column after preparing a query.
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
1317 EXPORT_C TInt RSqlStatement::ColumnName(TInt aColumnIndex, TPtrC& aNameDest)
1319 return Impl().ColumnName(aColumnIndex, aNameDest);
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.
1328 This function can be called at any time after the DML SQL statement has been prepared.
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
1335 EXPORT_C TInt RSqlStatement::ParameterName(TInt aParameterIndex, TPtrC& aNameDest)
1337 return Impl().ParameterName(aParameterIndex, aNameDest);
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.
1346 ParamName has the same behaviour as ParameterName. It is provided to maintain
1347 source compatibility with previous Symbian releases.
1349 This function can be called at any time after the DML SQL statement has
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
1357 EXPORT_C TInt RSqlStatement::ParamName(TInt aParameterIndex, TPtrC& aNameDest)
1359 return ParameterName(aParameterIndex, aNameDest);
1362 ////////////////////////////////////////////////////////////////////////////////////////////////////////
1363 ////////////////////////////////////////////////////////////////////////////////////////////////////////
1364 ////////////////////////////////////////////////////////////////////////////////////////////////////////
1367 Returns a reference to the implementation object of RSqlStatement - CSqlStatementImpl.
1369 @panic SqlDb 2 The SQL statement has not been prepared,
1370 i.e. Prepare() has not yet been called on this RSqlStatement object.
1374 CSqlStatementImpl& RSqlStatement::Impl() const
1376 __ASSERT_ALWAYS(iImpl != NULL, __SQLPANIC(ESqlPanicInvalidObj));