First public contribution.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
20 /** Resets the rowset.
22 For a Table, this just sets the rowset cursor to the beginning position.
24 For an SQL view, this discards any evaluated rows and returns the cursor to
25 the beginning. The view then requires reevaluation.
27 The Store Database implementation requires this function to be called in order
28 to recover an open rowset object after the database has been rolled back.
29 The rowset does not need to be closed in this situation.
31 If a rowset object requires a reset, then all row functions return or leave
33 EXPORT_C void RDbRowSet::Reset()
38 /** Closes the rowset and releases any owned resources. It is safe to close a rowset
39 object which is not open. */
40 EXPORT_C void RDbRowSet::Close()
45 /** Returns the number of rows available in a rowset.
47 This can take some time to complete, and a parameter can be passed to request
48 a quick but not always thorough count of the rows.
50 For SQL views, the value returned depends on the evaluation window being used
51 by the view. If there is an evaluation window this function will always return
52 the number of rows available in the window, not the total number which could
53 be returned by the query.
55 @param anAccuracy This specifies whether to ensure that an accurate count
56 is returned, or to give up if this value is not readily available. The default
57 is to ensure an accurate count.
58 @return The number of rows available in the rowset, or KDbUndefinedCount if
59 EQuick was specified and the count was not available.
61 @capability Note For a secure shared database, the caller must satisfy either the read
62 or the write access policy for the table.
64 EXPORT_C TInt RDbRowSet::CountL(TAccuracy aAccuracy) const
66 return iCursor->CountL(aAccuracy);
69 /** Tests whether there are any rows in the rowset. This is often faster than testing
72 @return ETrue if there are no rows available in the rowset, EFalse if there
75 @capability Note For a secure shared database, the caller must satisfy the read
76 access policy for the table.
78 EXPORT_C TBool RDbRowSet::IsEmptyL() const
82 TInt count=CountL(EQuick);
83 if (count!=KDbUndefinedCount)
85 TDbBookmark mark=Bookmark();
86 CDbCursor& cursor=*iCursor;
87 TBool hasRow=cursor.GotoL(EFirst);
88 cursor.GotoL(mark.iMark);
92 /** Returns the entire column set for the rowset. This can be used to discover
93 column ordinals for named columns in this rowset.
95 The function leaves with KErrNoMemory if there is not enough memory to carry
98 @return The column set object which describes this rowset structure. The caller
99 should delete it when it is no longer required. */
100 EXPORT_C CDbColSet* RDbRowSet::ColSetL() const
102 CDbColSet* cs=CDbColSet::NewLC();
103 iCursor->ColumnsL(*cs);
108 /** Returns the number of columns which are defined in this rowset.
110 @return The number of columns which are defined in this rowset. */
111 EXPORT_C TInt RDbRowSet::ColCount() const
113 return iCursor->ColumnCount();
116 /** Returns the type of a column in the rowset.
118 @param aCol The column ordinal for which the column type is required. Column
119 ordinals range from 1 to ColCount().
120 @return The type of the column aCol. */
121 EXPORT_C TDbColType RDbRowSet::ColType(TDbColNo aColNo) const
123 return iCursor->ColumnType(aColNo);
126 /** Returns the definition of a column in the rowset.
128 @param aCol The column ordinal for which the column definition is required.
129 Column ordinals range from 1 to ColCount().
130 @return The definition of the column aCol. */
131 EXPORT_C TDbCol RDbRowSet::ColDef(TDbColNo aColNo) const
134 iCursor->ColumnDef(col,aColNo);
138 /** Tests whether the cursor is on a row.
140 One of the following is true:
142 the rowset is currently updating a row
144 the rowset is currently inserting a row
146 GetL() can be called to retrieve the row
148 @return ETrue if the cursor is on a valid row; EFalse, otherwise. */
149 EXPORT_C TBool RDbRowSet::AtRow() const
151 return iCursor->AtRow();
154 /** Tests whether the cursor is at the beginning of the rowset.
156 @return ETrue if the cursor is at the beginning, otherwise EFalse. */
157 EXPORT_C TBool RDbRowSet::AtBeginning() const
159 return iCursor->AtBeginning();
162 /** Tests whether the cursor is at the end of the rowset.
164 @return ETrue if the cursor is at the end, otherwise EFalse. */
165 EXPORT_C TBool RDbRowSet::AtEnd() const
167 return iCursor->AtEnd();
170 /** Moves the cursor to a specified position.
172 This is invoked by Beginning(), End(), FirstL(), LastL(), NextL() and PreviousL()
173 to navigate the cursor. See those functions for descriptions of how the cursor
174 behaves given different position specifications.
176 @param aPosition Specifies the position to move the cursor to.
177 @return ETrue if the cursor is now at a row, EFalse if it is at the beginning
180 @capability Note For a secure shared database, the caller must satisfy the read
181 access policy for the table.
183 EXPORT_C TBool RDbRowSet::GotoL(TPosition aPosition)
185 return iCursor->GotoL(aPosition);
188 /** Gets the bookmark for the current cursor position. Bookmarks cannot be extracted
189 when the rowset is updating or inserting a row.
191 The Store Database implementation allows bookmarks to be extracted for any
192 cursor position including the beginning and end.
194 @return A bookmark which can be used to return to the current position using
195 the GotoL() function.
197 @capability Note For a secure shared database, the caller must satisfy the read
198 access policy for the table.
200 EXPORT_C TDbBookmark RDbRowSet::Bookmark() const
203 iCursor->Bookmark(mark.iMark);
207 /** Goes to a previously bookmarked position in a rowset.
209 The Store Database implements bookmarks which are valid in any rowset based
210 on the same table or generated by the same query, and which persist across
211 transaction boundaries.
213 @param aMark The bookmark to return to. This should have been returned by
214 a previous call to Bookmark() on this or an equivalent rowset object.
216 @capability Note For a secure shared database, the caller must satisfy the read
217 access policy for the table.
219 EXPORT_C void RDbRowSet::GotoL(const TDbBookmark& aMark)
221 iCursor->GotoL(aMark.iMark);
224 /** Gets the current row data for access using the column extractor functions.
225 The cursor must be positioned at a valid row.
227 @capability Note For a secure shared database, the caller must satisfy the read
228 access policy for the table.
230 EXPORT_C void RDbRowSet::GetL()
235 /** Inserts a new row into the rowset. All auto-increment columns will be initialised
236 with their new values, all other columns will be initialised to NULL values.
237 If no client-begun transaction is in progress, this function begins an automatic
238 transaction, which is committed by PutL().
240 After the column values have been set using the SetColL() functions, the row
241 can be written to the database using PutL().
243 @capability Note For a secure shared database, the caller must satisfy the write
244 access policy for the table.
246 EXPORT_C void RDbRowSet::InsertL()
248 iCursor->InsertL(CDbCursor::EClear);
251 /** Inserts a copy of the current row into the rowset. All auto-increment columns
252 will be given a new value (as for InsertL()), the other columns will copy
253 their values from the cursor's current row. If no client-begun transaction
254 is in progress, this function begins an automatic transaction, which is committed
257 After the column values have been modified using the SetColL() functions,
258 the row can be written to the database using PutL().
260 @capability Note For a secure shared database, the caller must satisfy the write
261 access policy for the table.
263 EXPORT_C void RDbRowSet::InsertCopyL()
265 iCursor->InsertL(CDbCursor::ECopy);
268 /** Prepares the current row for update. If no client-begun transaction is in progress,
269 this function begins an automatic transaction, which is committed by PutL().
271 After the column values have been modified using the SetColL() functions,
272 the row can be written back to the database using PutL().
274 @capability Note For a secure shared database, the caller must satisfy the write
275 access policy for the table.
277 EXPORT_C void RDbRowSet::UpdateL()
282 /** Completes the update or insertion of a row.
284 First the new row data is validated:
286 not-null columns are checked to be not NULL
288 numerical columns are checked to be in range for their type
290 variable length columns are checked to not exceed their maximum length
292 unique index keys are checked to ensure uniqueness is not violated
294 Note that modifying auto-increment columns is not prevented by DBMS.
296 Following validation the data is written to the database and any affected
297 indexes are updated. On successful completion of the write, PutL() will then
298 commit any automatic transaction.
300 The cursor is left positioned on the updated or inserted row — where this
301 lies in the rowset is not always well defined. To return to the row which
302 was current prior to the update or insertion, a bookmark can be used.
304 In the Store Database implementation the written row is located in the rowset
307 Tables without an active index will leave updated rows in the same location
308 and append new rows to the end of the rowset.
310 Tables with an active index place the row according to the active index ordering.
312 SQL views without an evaluation window will place it according to the rowset
313 ordering. The row may subsequently disappear if it does not match the WHERE
314 clause of the SQL query.
316 SQL views with a full evaluation window will leave updated rows in the same
317 location and append new rows to the end of the rowset. Re-evaluation may cause
318 the row to disappear if it does not match the WHERE clause of the SQL query.
320 SQL views with a partial evaluation window will leave updated rows in the
321 same location, new rows are not added to the window and navigation from the
322 new row is undefined. Further navigation and evaluation of the partial window
323 will place the rows in the correct location according to the query.
325 @capability Note For a secure shared database, the caller must satisfy the write
326 access policy for the table.
328 EXPORT_C void RDbRowSet::PutL()
333 /** Deletes the current row in a rowset. The rowset must not currently be updating
334 or inserting the row.
336 The rowset cursor is left positioned at the "hole" left by the deletion of
337 the current row. Navigation to the next or previous row will have the same
338 effect as if this row had not been deleted. Once the cursor has been moved
339 from the "hole" it will disappear from the rowset.
341 If the client has not begun a transaction, this function will use an automatic
342 transaction to update the rowset.
344 @capability Note For a secure shared database, the caller must satisfy the write
345 access policy for the table.
347 EXPORT_C void RDbRowSet::DeleteL()
352 /** Cancels the update or insertion of a row, or recovers the rowset if PutL()
353 fails. The cursor will return to the location prior to starting the update
354 or insertion. It is also safe to call this function when the rowset object
355 is not updating or inserting a row, in which case it does nothing.
357 In the Store database implementation, if this is called to abort a row update
358 or insertion before PutL() is called or during row validation in PutL(), all
359 the changes are discarded without requiring a transaction rollback and the
360 rowset to be Reset(). */
361 EXPORT_C void RDbRowSet::Cancel()
367 // Checks for valid Cursor and column ID
369 CDbCursor& RDbRowSet::CheckCol(TDbColNo aCol) const
371 CDbCursor& cr=*iCursor;
372 __ASSERT_ALWAYS(aCol>0&&aCol<=cr.ColumnCount(),Panic(EDbInvalidColumn));
377 // Checks for valid Cursor, column ID and type
379 TDbColumnC RDbRowSet::ColumnC(TDbColNo aCol,TDbColType aType) const
381 CDbCursor& cr=*iCursor;
382 TDbColType cType=cr.ColumnType(aCol);
384 { // not an exact match
386 Panic(EDbWrongType); // extraction type is narrower
387 else if (!IsIntegral(cType))
388 Panic(EDbWrongType); // type is non-integral
389 else if (IsSigned(cType) && IsUnsigned(aType))
390 Panic(EDbWrongType); // cannot get signed column as unsigned
392 return cr.ColumnC(aCol);
395 TDbColumn RDbRowSet::Column(TDbColNo aCol,TDbColType aType)
397 CDbCursor& cr=*iCursor;
398 __ASSERT_ALWAYS(cr.ColumnType(aCol)==aType,Panic(EDbWrongType));
399 return cr.Column(aCol);
402 /** Gets the size in bytes of a column value. This can be used for all column types,
403 including Long columns. NULL columns return a size of 0.
407 This may yield unexpected results for small numerical column types as they
408 are stored in memory as 32-bit values.
410 @param aCol The column ordinal of the column to check.
411 @return The length in bytes of column aCol's value. */
412 EXPORT_C TInt RDbRowSet::ColSize(TDbColNo aCol) const
414 return iCursor->ColumnSize(aCol);
417 /** Gets the length of a column value. As compared with ColSize(), this returns
418 the number of "units" in the column:
420 NULL columns have a length of 0
422 non-NULL numerical and date-time columns have a length of 1
424 for Text columns the length is the character count
426 for Binary columns the length is the byte count
428 @param aCol The column ordinal of the column to check.
429 @return The length in "units" of column aCol's value. */
430 EXPORT_C TInt RDbRowSet::ColLength(TDbColNo aCol) const
432 TInt size=ColSize(aCol);
433 switch (iCursor()->ColumnType(aCol))
436 case EDbColLongText8:
438 case EDbColLongBinary:
441 case EDbColLongText16:
453 /** Extracts a TInt8 column value.
455 @param aCol The column ordinal of the column to extract.
456 @return The value of column aCol. */
457 EXPORT_C TInt8 RDbRowSet::ColInt8(TDbColNo aCol) const
459 return ColumnC(aCol,EDbColInt8).Int8();
462 /** Extracts a TInt16 or TInt8 column value.
464 @param aCol The column ordinal of the column to extract.
465 @return The value of column aCol. */
466 EXPORT_C TInt16 RDbRowSet::ColInt16(TDbColNo aCol) const
468 return ColumnC(aCol,EDbColInt16).Int16();
471 /** Extracts a TInt32, TInt16 or TInt8 column value.
473 @param aCol The column ordinal of the column to extract.
474 @return The value of column aCol. */
475 EXPORT_C TInt32 RDbRowSet::ColInt32(TDbColNo aCol) const
477 return ColumnC(aCol,EDbColInt32).Int32();
480 /** Extracts a TInt64 column value.
482 @param aCol The column ordinal of the column to extract.
483 @return The value of column aCol. */
484 EXPORT_C TInt64 RDbRowSet::ColInt64(TDbColNo aCol) const
486 CDbCursor& cr=*iCursor;
487 TDbColumnC c=cr.ColumnC(aCol);
488 TDbColType t=cr.ColumnType(aCol);
494 return TInt(c.Int32());
495 return TUint(c.Uint32());
498 /** Extracts a Uint8 or Bit column value.
500 @param aCol The column ordinal of the column to extract.
501 @return The value of column aCol. */
502 EXPORT_C TUint8 RDbRowSet::ColUint8(TDbColNo aCol) const
504 return ColumnC(aCol,EDbColUint8).Uint8();
507 /** Extracts a Uint16, Uint8 or Bit column value.
509 @param aCol The column ordinal of the column to extract.
510 @return The value of column aCol. */
511 EXPORT_C TUint16 RDbRowSet::ColUint16(TDbColNo aCol) const
513 return ColumnC(aCol,EDbColUint16).Uint16();
516 /** Extracts a Uint32, Uint16, Uint8 or Bit column value.
518 @param aCol The column ordinal of the column to extract.
519 @return The value of column aCol. */
520 EXPORT_C TUint32 RDbRowSet::ColUint32(TDbColNo aCol) const
522 return ColumnC(aCol,EDbColUint32).Uint32();
525 /** Extracts a TReal32 column value.
527 @param aCol The column ordinal of the column to extract.
528 @return The value of column aCol. */
529 EXPORT_C TReal32 RDbRowSet::ColReal32(TDbColNo aCol) const __SOFTFP
531 return ColumnC(aCol,EDbColReal32).Real32();
534 /** Extracts a TReal64 column value.
536 @param aCol The column ordinal of the column to extract.
537 @return The value of column aCol. */
538 EXPORT_C TReal64 RDbRowSet::ColReal64(TDbColNo aCol) const __SOFTFP
540 return ColumnC(aCol,EDbColReal64).Real64();
543 /** Extracts a TTime column value.
545 @param aCol The column ordinal of the column to extract.
546 @return The value of column aCol. TTime may be either local time or universal time.
547 DBMS doesn't interpret the value of TTime, it is left up to the user to know which has been used.*/
548 EXPORT_C TTime RDbRowSet::ColTime(TDbColNo aCol) const
550 return ColumnC(aCol,EDbColDateTime).Time();
553 /** Extracts any column type, except Long columns, as binary data.
554 Can handle any type of non-long column
556 @param aCol The column ordinal of the column to extract.
557 @return A descriptor of column aCol's value. */
558 EXPORT_C TPtrC8 RDbRowSet::ColDes8(TDbColNo aCol) const
560 CDbCursor& cr=*iCursor;
561 __ASSERT_ALWAYS(!IsLong(cr.ColumnType(aCol)),Panic(EDbWrongType));
562 return cr.ColumnC(aCol).PtrC8();
565 /** Extracts a column as Unicode text.
567 @param aCol The column ordinal of the column to extract
568 @return A descriptor of column aCol's value. */
569 EXPORT_C TPtrC16 RDbRowSet::ColDes16(TDbColNo aCol) const
571 return ColumnC(aCol,EDbColText16).PtrC16();
574 /** Extracts a Text column value. The column type must match the default descriptor
575 type to use this extractor, ie. it must be equal to EDbColText.
577 @param aCol The column ordinal of the column to extract.
578 @return A descriptor of column aCol's value. */
579 EXPORT_C TPtrC RDbRowSet::ColDes(TDbColNo aCol) const
581 return ColDes16(aCol);
584 /** Use this function to set the value of a column to NULL.
586 @param aCol The column ordinal of the column to set to NULL.
588 @capability Note For a secure shared database, the caller must satisfy the write
589 access policy for the table.
591 EXPORT_C void RDbRowSet::SetColNullL(TDbColNo aCol)
593 iCursor->SetNullL(aCol);
596 /** Sets a TInt32, TInt16 or TInt8 column value.
598 @param aCol The column ordinal of the column to set.
599 @param aValue The new column value. */
600 EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TInt32 aValue)
602 CDbCursor& cr=*iCursor;
603 TDbColType t=cr.ColumnType(aCol);
605 { // set any <= 32-bit integral type
608 cr.Column(aCol).SetL(aValue);
612 { // check the domain for unsigned columns
613 cr.Column(aCol).SetL(aValue);
620 /** Sets a TInt64 column value.
622 @param aCol The column ordinal of the column to set.
623 @param aValue The new column value. */
624 EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TInt64 aValue)
626 CDbCursor& cr=*iCursor;
627 TDbColumn c=cr.Column(aCol);
628 TDbColType t=cr.ColumnType(aCol);
636 TInt32 l = I64LOW(aValue);
637 TInt32 h = I64HIGH(aValue);
639 { // check the domain for signed 32-bit
640 if (h==l>>31) // sign-extend l gives aValue
645 } // invalid type, drop through to panic
647 { // check the domain for unsigned 32-bit
649 { // zero extend l gives aValue
650 c.SetL(l); // in unsigned 32 bit range
653 } // invalid type, drop through to panic
658 /** Sets a TUint32, TUint16, TUint8 or Bit column value.
660 @param aCol The column ordinal of the column to set.
661 @param aValue The new column value. */
662 EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TUint32 aValue)
664 CDbCursor& cr=*iCursor;
665 TDbColType t=cr.ColumnType(aCol);
667 { // set any <= 32-bit integral type
670 cr.Column(aCol).SetL(aValue);
673 if (aValue<=TUint32(KMaxTInt))
674 { // check the domain for signed columns
675 cr.Column(aCol).SetL(aValue);
682 /** Sets a TReal32 column value.
684 @param aCol The column ordinal of the column to set.
685 @param aValue The new column value. */
686 EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TReal32 aValue) __SOFTFP
688 Column(aCol,EDbColReal32).SetL(aValue);
691 /** Sets a TReal64 column value.
693 @param aCol The column ordinal of the column to set.
694 @param aValue The new column value. */
695 EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TReal64 aValue) __SOFTFP
697 Column(aCol,EDbColReal64).SetL(aValue);
700 /** Sets a TTime column value.
702 TTime could be either local time or universal time.
703 DBMS doesn't interpret the value of TTime, it is left up to the user to decide which should be used.
705 @param aCol The column ordinal of the column to set.
706 @param aValue The new column value. */
707 EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TTime aValue)
709 Column(aCol,EDbColDateTime).SetL(aValue);
712 /** Sets a column value from an 8 bit descriptor. This function can also set the
713 value of Long columns.
715 Usually this is used to set a Text8 or LongText8 column from a non-Unicode
716 text descriptor, but can be used for any column type: the data content is
717 validated when the row is PutL().
719 @param aCol The column ordinal of the column to set.
720 @param aValue The new column value. */
721 EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,const TDesC8 &aValue)
723 CDbCursor& c=*iCursor;
724 if (IsLong(c.ColumnType(aCol)))
726 RDbColWriteStream strm;
727 strm.OpenLC(*this,aCol);
730 CleanupStack::PopAndDestroy();
733 c.Column(aCol).SetL(aValue);
736 /** Set a column value from Unicode text.
738 @param aCol The column ordinal of the column to set.
739 @param aValue The new column value. */
740 EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,const TDesC16 &aValue)
742 CDbCursor& c=*iCursor;
743 if (c.ColumnType(aCol)==EDbColLongText16)
745 RDbColWriteStream strm;
746 strm.OpenLC(*this,aCol);
749 CleanupStack::PopAndDestroy();
752 Column(aCol,EDbColText16).SetL(aValue);
755 /** Searches through a rowset for a row which fulfils an SQL search-condition.
756 The search begins from the current position (which must be a valid row) and
757 proceeds forwards or backwards through the available rows until it finds a
758 match or runs out of rows.
760 The cursor is positioned to the matching row (or beginning/end of set) on
763 This is a brute-force approach to finding a row using an index for key-based
764 retrieval on a Table rowset is a much faster but less flexible way of finding
767 @param aDirection Specifies which direction to search after testing the current
769 @param aCriteria A query object containing an SQL search-condition to match
771 @return If no match is found KErrNotFound is returned. Otherwise the number
772 of rows navigated while finding a match, which may be 0 if the current row
775 @capability Note For a secure shared database, the caller must satisfy the read
776 access policy for the table.
778 EXPORT_C TInt RDbRowSet::FindL(TDirection aDirection,TDbQuery aCriteria)
780 return iCursor->FindL(aDirection,aCriteria);
783 /** Tests whether the current row in the rowset matches a previously compiled row
784 constraint. The rowset must not currently be updating or inserting a row.
786 @param aConstraint A row constraint object which must have been previously
787 opened on this rowset object.
788 @return ETrue if the current row fulfils the constraint, otherwise EFalse.
790 @capability Note For a secure shared database, the caller must satisfy the read
791 access policy for the table.
793 EXPORT_C TBool RDbRowSet::MatchL(const RDbRowConstraint& aConstraint)
795 return iCursor->MatchL(*aConstraint.iConstraint);
798 // Class RDbRowConstraint
800 /** Compiles the specified SQL search-condition for matching against rows in the
801 specified rowset. The text comparison supplied in aCriteria is used for all
802 text columns in the constraint.
804 @param aView The rowset to which the constraint will apply.
805 @param aCriteria The SQL string and the text comparison mode for the constraint.
806 @return KErrNone, if successful, otherwise one of the system-wide error codes.
807 Specifically:KErrNotFound if a column name in the SQL query does not exist.KErrArgument
808 if Invalid or unrecognised SQL syntax was used.KErrGeneral for a column type
809 mismatch in a predicate in the SQL query or if a date-literal in the SQL query
810 was invalid.KErrOverflow if a number-literal in the SQL query for an integral
811 column was too large (did not fit in a 32-bit integral representation). This
812 can also be one of the DBMS database error codes.
814 @capability Note For a secure shared database, the caller must satisfy the read
815 access policy for the table.
817 EXPORT_C TInt RDbRowConstraint::Open(const RDbRowSet& aView,TDbQuery aCriteria)
819 TRAPD(r,iConstraint=aView.iCursor->ConstraintL(aCriteria));
823 /** Releases the resources used by the constraint before discarding the constraint
825 EXPORT_C void RDbRowConstraint::Close()
830 // Class RDbColReadStream
832 /** Opens the column with the specified ordinal in the specified current row in
833 the rowset. The row must have previously been read into the rowset using RDbRowSet::GetL().
835 @param aView The rowset which has the row and column to be read.
836 @param aCol The column ordinal of the column to be read
838 @capability Note For a secure shared database, the caller must satisfy the read
839 access policy for the table.
841 EXPORT_C void RDbColReadStream::OpenL(const RDbRowSet& aView,TDbColNo aCol)
843 Attach(aView.ColSourceL(aCol));
846 /** Opens the column with the specified ordinal in the specified current row in
847 the rowset and puts a pointer to the column on the cleanup stack.
849 The row must have previously been read into the rowset using RDbRowSet::GetL().
851 @param aView The rowset which has the row and column to be read.
852 @param aCol The column ordinal of the column to be read.
854 @capability Note For a secure shared database, the caller must satisfy the read
855 access policy for the table.
857 EXPORT_C void RDbColReadStream::OpenLC(const RDbRowSet& aView,TDbColNo aCol)
863 // Class RDbColWriteStream
865 /** Opens the column with the specified ordinal in the current row, and in the
866 specified rowset, and prepares the column for being written or replaced. The
867 rowset must be updating or inserting a row.
869 @param aView The rowset which has the row and column to be written.
870 @param aCol The column ordinal of the column to be written.
872 @capability Note For a secure shared database, the caller must satisfy the write
873 access policy for the table.
875 EXPORT_C void RDbColWriteStream::OpenL(RDbRowSet& aView,TDbColNo aCol)
877 Attach(aView.ColSinkL(aCol));
880 /** Opens the column with the specified ordinal in the current row, and in the
881 specified rowset, and prepares the column for being written or replaced, putting
882 a cleanup item for this object onto the cleanup stack. The rowset must be
883 updating or inserting a row.
885 Placing the cleanup object on the cleanup stack allows allocated resources
886 to be cleaned up if a subsequent leave occurs.
888 @param aView The rowset which has the row and column to be written.
889 @param aCol The column ordinal of the column to be written.
891 @capability Note For a secure shared database, the caller must satisfy the write
892 access policy for the table.
894 EXPORT_C void RDbColWriteStream::OpenLC(RDbRowSet& aView,TDbColNo aCol)
902 /** Constructs this object with the preferred shape. When fully evaluated, the
903 view will try to have aForeSlots rows immediately available for navigation
904 forwards, and aRearSlots rows immediately available for navigation backwards.
906 @param aForeSlots The number of rows to evaluate ahead of the current row.
907 @param aRearSlots The number of rows to evaluate behind the current row. */
908 EXPORT_C TDbWindow::TDbWindow(TInt aForeSlots,TInt aRearSlots)
909 : iSize(aForeSlots+aRearSlots+1), iPreferredPos(aRearSlots)
911 __ASSERT_ALWAYS(aForeSlots>=0 && aRearSlots>=0,Panic(EDbInvalidViewWindowParameters));
916 /** Prepares the view object for evaluating an SQL select-statement.
918 Following preparation, the rowset object can always provide schema information,
919 but the view may first require evaluation to generate the rowset for navigation.
921 @param aDatabase The database on which to execute the query.
922 @param aQuery The SQL query and the text comparison mode for the constraint.
923 @param anAccess The access specification for the rowset. By default, updatable
925 @return KErrNone, if successful, otherwise one of the other system-wide error
926 codes. Specifically: KErrNotFound if The table does not exist in the database
927 or a column name in the SQL query does not exist.KErrNotSupported if a sort-specification
928 in the SQL query cannot be provided by an index.KErrArgument if an invalid
929 or unrecognised SQL syntax was used.KErrGeneral if there is a column type
930 mismatch in a predicate in the SQL query or if a date-literal in the SQL query
931 was invalid.KErrOverflow if a number-literal in the SQL query for an integral
932 column was too large (did not fit in a 32-bit integral representation). This
933 can also be one of the DBMS database error codes..
935 @capability Note For a secure shared database, the caller must satisfy the read
936 access policy for the table.
938 EXPORT_C TInt RDbView::Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,TAccess anAccess)
940 return Prepare(aDatabase,aQuery,TDbWindow(),anAccess);
943 /** Prepares the view object for evaluating an SQL select-statement and specifies
944 the evaluation window shape for the rowset.
946 The function does not specify the access specification for the rowset
947 updatable access is given.
949 Following preparation, the rowset object can always provide schema information,
950 but the view may first require evaluation to generate the rowset for navigation.
952 @param aDatabase The database on which to execute the query.
953 @param aQuery The SQL query and the text comparison mode for the constraint.
954 @param aWindow The desired evaluation window shape for the rowset. If this
955 parameter is omitted, an alternative overload is called e.g. no pre-evaluation
957 @return KErrNone, if successful, otherwise one of the other system-wide error
958 codes. Specifically: KErrNotFound if The table does not exist in the database
959 or a column name in the SQL query does not exist.KErrNotSupported if a sort-specification
960 in the SQL query cannot be provided by an index.KErrArgument if an invalid
961 or unrecognised SQL syntax was used.KErrGeneral if there is a column type
962 mismatch in a predicate in the SQL query or if a date-literal in the SQL query
963 was invalid.KErrOverflow if a number-literal in the SQL query for an integral
964 column was too large (did not fit in a 32-bit integral representation). This
965 can also be one of the DBMS database error codes.
967 @capability Note For a secure shared database, the caller must satisfy the read
968 access policy for the table.
970 EXPORT_C TInt RDbView::Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,const TDbWindow& aWindow)
972 return Prepare(aDatabase,aQuery,aWindow,EUpdatable);
975 /** Prepares the view object for evaluating an SQL select-statement, specifies
976 the evaluation window shape for the rowset, and sets the access specification
979 Following preparation, the rowset object can always provide schema information,
980 but the view may first require evaluation to generate the rowset for navigation.
982 @param aDatabase The database on which to execute the query.
983 @param aQuery The SQL query and the text comparison mode for the constraint.
984 @param aWindow The desired evaluation window shape for the rowset. If this
985 parameter is omitted, an alternative overload is called e.g. no pre-evaluation
987 @param anAccess The access specification for the rowset. If omitted, updatable
989 @return KErrNone, if successful, otherwise one of the other system-wide error
990 codes. Specifically:KErrNotFound if The table does not exist in the database
991 or a column name in the SQL query does not exist.KErrNotSupported if a sort-specification
992 in the SQL query cannot be provided by an index.KErrArgument if an invalid
993 or unrecognised SQL syntax was used.KErrGeneral if there is a column type
994 mismatch in a predicate in the SQL query or if a date-literal in the SQL query
995 was invalid.KErrOverflow if a number-literal in the SQL query for an integral
996 column was too large (did not fit in a 32-bit integral representation). This
997 can also be one of the DBMS database error codes.
999 @capability Note For a secure shared database, the caller must satisfy the read
1000 access policy for the table.
1002 EXPORT_C TInt RDbView::Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,const TDbWindow& aWindow,TAccess anAccess)
1004 TRAPD(r,iCursor=aDatabase.iDatabase->ViewL(aQuery,aWindow,anAccess));
1008 /** Use this function to fully evaluate the view. It is equivalent to:
1010 while (Unevaluated()) { Evaluate(); }
1012 @return KErrNone, if successful, otherwise one of the system wide error codes. */
1013 EXPORT_C TInt RDbView::EvaluateAll()
1016 do r=Evaluate(); while (r>0);
1020 /** Performs a single step of the view evaluation, and returns when the step is
1021 complete. To completely evaluate a view in one go, EvaluateAll() should be
1024 @return 0, evaluation is complete.> 0, more evaluation can be done. < 0, an
1025 error code, see the class overview for more information. */
1026 EXPORT_C TInt RDbView::Evaluate()
1028 return iCursor->Evaluate();
1031 /** Performs a single step of the view evaluation, returning immediately and signalling
1032 when the step is complete.
1034 This function is most effectively used when the view evaluation is carried
1035 out from an active object.
1037 @param aStatus The request status used to contain completion information for
1038 the function. On completion, the status value should be interpreted as follows:
1039 0, evaluation is complete.> 0, more evaluation can be done. < 0, an error
1040 code, see the class overview for more information. */
1041 EXPORT_C void RDbView::Evaluate(TRequestStatus& aStatus)
1043 iCursor->Evaluate(aStatus);
1046 /** Tests whether any more evaluation can be done to a view.
1048 @return ETrue, if the view can be further evaluated; EFalse, if evaluation will
1050 EXPORT_C TBool RDbView::Unevaluated() const
1052 return iCursor->Unevaluated();
1057 /** Opens the named table object on a database with the specified access.
1059 If successful, the rowset is positioned to the beginning.
1061 @param aDatabase The database on which to open the table.
1062 @param aName The name of the table to open.
1063 @param anAccess The access specification for the rowset, the default is updatable
1065 @return KErrNone, if successful, otherwise one of the system-wide error codes.
1066 Specifically:KErrNotFound if the table does not exist in the database.KErrAccessDenied
1067 if an incremental operation is in progress. This can also be one of the DBMS
1068 database error codes.
1070 @capability Note For a secure shared database, the caller must satisfy either the read
1071 or the write access policy for the table.
1073 EXPORT_C TInt RDbTable::Open(RDbDatabase &aDatabase,const TDesC &aName,TAccess anAccess)
1075 TRAPD(r,iCursor=aDatabase.iDatabase->TableL(aName,anAccess));
1079 /** Sets the specified index as the active index for this table. The rows will
1080 be presented in index order, and this index key will be used for lookup by
1081 the SeekL() function.
1083 If successful, the rowset is reset to the beginning.
1085 @param anIndex The name of the index to activate.
1086 @return KErrNone, if successful, otherwise one of the system-wide error codes.
1087 Specifically:KErrWrite if the table was created with insert-only access.KErrNotFound
1088 if the index does not exist on the table. This can also be one of the DBMS
1089 database error codes.
1091 @capability Note For a secure shared database, the caller must satisfy the read
1092 access policy for the table.
1094 EXPORT_C TInt RDbTable::SetIndex(const TDesC* anIndex)
1096 TRAPD(r,iCursor->SetIndexL(anIndex));
1100 /** Finds a row in a table based on a key in the active index.
1102 This function cannot be called while the rowset is currently updating or inserting
1103 a row. The currently active index on the table must have a key definition
1104 which matches the types in the key value.
1106 Less columns can be added to the key than are present in the index definition:
1107 the keys will only be compared up to the columns present further columns
1108 in the index are not considered.
1110 If successful the cursor is positioned to the row which was found, otherwise
1111 the cursor is left on an invalid row.
1113 The underlying Store database can leave with KErrWrite, if the table was created
1114 with insert-only access.
1116 The function can also leave with one of the DBMS database error codes.
1118 @param aKey The key value to lookup in the index.
1119 @param aComparison The comparison operation for the lookup, the default is
1120 to look for an exact match (EEqualTo).
1121 @return ETrue if a row which compares correctly with the key exists, EFalse if
1124 @capability Note For a secure shared database, the caller must satisfy the read
1125 access policy for the table.
1127 EXPORT_C TBool RDbTable::SeekL(const TDbSeekKey& aKey,TComparison aComparison)
1129 __ASSERT_ALWAYS(aKey.iKey.Count()>0,Panic(EDbNoColumnsInSeekKey));
1130 return iCursor->SeekL(aKey.iKey,aComparison);
1136 // Default implementation in terms of ColumnDef. Might be inefficient
1138 EXPORT_C void CDbCursor::ColumnsL(CDbColSet& aColSet)
1141 TDbColNo max=ColumnCount();
1142 for (TDbColNo ii=0;++ii<=max;)
1150 // Default implementation in terms of navigation
1151 // Faster counting may be possible
1153 EXPORT_C TInt CDbCursor::CountL(RDbRowSet::TAccuracy)
1155 TDbBookmark::TMark mark;
1157 GotoL(RDbRowSet::EBeginning);
1159 while (GotoL(RDbRowSet::ENext))
1166 // Default implementation in terms of constraints
1168 EXPORT_C TInt CDbCursor::FindL(RDbRowSet::TDirection aDirection,const TDbQuery& aCriteria)
1170 CDbRowConstraint* constraint=ConstraintL(aCriteria);
1171 constraint->PushL();
1172 RDbRowSet::TPosition next=aDirection==RDbRowSet::EForwards ? RDbRowSet::ENext : RDbRowSet::EPrevious;
1176 if (MatchL(*constraint))
1178 CleanupStack::PopAndDestroy(); // constraint
1182 } while (GotoL(next));
1183 CleanupStack::PopAndDestroy();
1184 return KErrNotFound;
1187 TInt CDbCursor::Evaluate()
1189 TRAPD(r,r=EvaluateL());
1193 CDbRowConstraint* CDbCursor::ConstraintL(const TDbQuery& aQuery)
1195 return AttachContext(this,OpenConstraintL(aQuery));
1199 // Reserved for future development
1201 EXPORT_C void CDbCursor::Reserved_1()
1206 // Reserved for future development
1208 EXPORT_C void CDbCursor::Reserved_2()