Update contrib.
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.
17 inline TDbCol::TDbCol(const TDesC &aName)
23 TDbCol copy constructor.
24 @param aSrcCol This TDbCol object will be constructed as an exact copy of aSrcCol object.
26 inline TDbCol::TDbCol(const TDbCol& aSrcCol) :
28 iMaxLength(aSrcCol.iMaxLength),
29 iAttributes(aSrcCol.iAttributes),
30 iName(static_cast <const TDesC&> (aSrcCol.iName))
36 @param aSrcCol This TDbCol object will be made to be an exact copy of aSrcCol object.
38 inline TDbCol& TDbCol::operator=(const TDbCol& aSrcCol)
40 iType = aSrcCol.iType;
41 iMaxLength = aSrcCol.iMaxLength;
42 iAttributes = aSrcCol.iAttributes;
43 iName = static_cast <const TDesC&> (aSrcCol.iName);
47 /** Tests if a column is of the Long column type, i.e. one of the EDbColLongXxxx
50 @param aType The column type to test.
51 @return ETrue if the aType is a Long column type, EFalse otherwise. */
52 inline TBool TDbCol::IsLong(TDbColType aType)
54 return aType>=EDbColLongText8;
58 /** Returns the number of column definitions in the set.
60 Note that using a TDbColSetIter is another way to iterate through the contents
63 @return The number of columns in the columns set. */
64 inline TInt CDbColSet::Count() const
66 return iColumns.Count();
69 /** Removes all of the columns from the column set. */
70 inline void CDbColSet::Clear()
75 /** Returns a column definition by its ordinal number in the set.
77 Note that using a TDbColSetIter is another way to iterate through the contents
80 @param aCol The ordinal number of the column in the set. Columns in a column
81 set are numbered from 1 to Count(), unlike Symbian OS array classes. Ordinal
82 0 is reserved to represent the invalid column number KDbNullColNo.
83 @return The column definition requested. */
84 inline const TDbCol& CDbColSet::operator[](TDbColNo aCol) const
86 return iColumns[aCol-1];// 1-based column ids
89 // Class TDbColSetIter
90 inline TDbColSetIter::operator TAny* () const
92 return CONST_CAST(TDbCol*,iColumn);
95 /** Dereferences the iterator on the current column definition.
97 @return A const reference to the current column definition. */
98 inline const TDbCol& TDbColSetIter::operator*() const
100 __ASSERT_DEBUG(iIndex<iArray->Count(),User::Invariant());
104 /** Gets a member of the currently referenced column definition. This enables the
105 use of the following constructs:
107 if (iter->iType==EDbColText && iter->iMaxLength<50)
109 @return A const pointer to the current column definition. */
110 inline const TDbCol* TDbColSetIter::operator->() const
112 __ASSERT_DEBUG(iIndex<iArray->Count(),User::Invariant());
116 /** Returns a column ordinal in the set for the currently referenced column definition.
118 @return The column ordinal of the current column definition. */
119 inline TDbColNo TDbColSetIter::Col() const
121 __ASSERT_DEBUG(iIndex<iArray->Count(),User::Invariant());
125 /** Moves the iterator to the next column in the set post increment operator.
127 Note that this is implemented in terms of the pre-increment operator, and
130 @param Unused: required for the C++ compiler to resolve the ambiguity with
131 the pre-increment operator.
132 @return A copy of this iterator, referring to the column definition before
133 the increment operation is performed. */
134 inline TDbColSetIter TDbColSetIter::operator++(TInt)
136 TDbColSetIter tmp(*this);
142 TDbKeyCol copy constructor.
143 @param aSrcKeyCol This TDbKeyCol object will be constructed as an exact copy of aSrcKeyCol object.
145 inline TDbKeyCol::TDbKeyCol(const TDbKeyCol& aSrcKeyCol) :
146 iOrder(aSrcKeyCol.iOrder),
147 iLength(aSrcKeyCol.iLength),
148 iName(static_cast <const TDesC&> (aSrcKeyCol.iName))
153 TDbKeyCol "=" operator.
154 @param aSrcKeyCol This TDbKeyCol object will be made to be an exact copy of aSrcKeyCol object.
156 inline TDbKeyCol& TDbKeyCol::operator=(const TDbKeyCol& aSrcKeyCol)
158 iOrder = aSrcKeyCol.iOrder;
159 iLength = aSrcKeyCol.iLength;
160 iName = static_cast <const TDesC&> (aSrcKeyCol.iName);
166 inline TInt CDbKey::Count() const
168 return iKeys.Count();
171 /** Returns a key column by its position in the key.
173 @param aCol The position of the column in the key. These are numbered from
175 @return The key column requested. */
176 inline const TDbKeyCol& CDbKey::operator[](TInt aCol) const
181 /** Makes the key unique. This ensures that every key value in the index is distinct
183 inline void CDbKey::MakeUnique()
185 iAttributes|=EUnique;
188 /** Tests whether the key is unique.
190 @return ETrue, if the key is unique; EFalse, otherwise. */
191 inline TBool CDbKey::IsUnique() const
193 return iAttributes&EUnique;
196 /** Tests whether the key is the primary key.
198 @return ETrue, if the key is unique; EFalse, otherwise. */
199 inline TBool CDbKey::IsPrimary() const
201 return iAttributes&EPrimary;
204 /** Sets the way in which Text columns are compared for the key. All Text columns
205 in the key are compared in the same way.
207 @param aComparison The comparison type to use. */
208 inline void CDbKey::SetComparison(TDbTextComparison aComparison)
210 iComparison=aComparison;
213 /** Returns the method used to compare Text columns in this key.
215 @return The comparison type used for the key. */
216 inline TDbTextComparison CDbKey::Comparison() const
221 inline void CDbKey::MakePrimary()
223 iAttributes|=EPrimary;
227 /** Constructs a query object from an SQL string and a text comparison mode.
229 Note that no copy is made of the descriptor passed; it is stored by reference
232 @param aQuery The SQL string as a descriptor.
233 @param aComparison The type of text comparison to use in evaluation of the
234 SQL. If not supplied, normal comparison is used. */
235 inline TDbQuery::TDbQuery(const TDesC& aQuery,TDbTextComparison aComparison):
237 iComparison(aComparison)
241 /** Returns the SQL string in the query object.
243 @return A descriptor containing the SQL string. */
244 inline const TDesC& TDbQuery::Query() const
249 /** Returns the text comparison mode for the query object.
251 @return The text comparison mode. */
252 inline TDbTextComparison TDbQuery::Comparison() const
257 // Class RDbHandleBase
258 inline RDbHandleBase::RDbHandleBase():
265 /** Positions the cursor at the beginning of the rowset.
267 @capability Note For a secure shared database, the caller must satisfy the read
268 access policy for the table.
270 inline void RDbRowSet::BeginningL()
275 /** Positions the cursor at the end of the rowset.
277 @capability Note For a secure shared database, the caller must satisfy the read
278 access policy for the table.
280 inline void RDbRowSet::EndL()
285 /** Positions the cursor on the first row in the rowset. If there are no rows,
286 the cursor is positioned at the end.
288 @return ETrue if the cursor is now at a row, EFalse if it is at the end.
290 @capability Note For a secure shared database, the caller must satisfy the read
291 access policy for the table.
293 inline TBool RDbRowSet::FirstL()
295 return GotoL(EFirst);
298 /** Positions the cursor on the last row in the rowset. If there are no rows, the
299 cursor is positioned at the beginning.
301 @return ETrue if the cursor is now at a row, EFalse if it is at the beginning.
303 @capability Note For a secure shared database, the caller must satisfy the read
304 access policy for the table.
306 inline TBool RDbRowSet::LastL()
311 /** Moves the cursor to the next row in the rowset. If there are no more rows,
312 the cursor is positioned to the end.
314 If the cursor is at the beginning prior to the function, it is equivalent
317 @capability Note For a secure shared database, the caller must satisfy the read
318 access policy for the table.
320 inline TBool RDbRowSet::NextL()
325 /** Moves the cursor to the previous row in the rowset. If there are no more rows,
326 the cursor is positioned to the beginning.
328 If the cursor is at the end prior to the function, it is equivalent to LastL().
330 @return ETrue if the cursor is now at a row, EFalse if it is at the beginning.
332 @capability Note For a secure shared database, the caller must satisfy the read
333 access policy for the table.
335 inline TBool RDbRowSet::PreviousL()
337 return GotoL(EPrevious);
340 /** Tests whether a column has the NULL value.
342 Columns which have the NULL value can still be extracted with the correct
343 accessor function, in which case numerical columns will return a 0 (or equivalent)
344 value, and text and binary columns will have a zero length.
346 @param aCol The column ordinal for the column to test.
347 @return ETrue if column aCol is NULL, otherwise EFalse. */
348 inline TBool RDbRowSet::IsColNull(TDbColNo aCol) const
350 return ColSize(aCol)==0;
353 /** Extracts a signed integer column value. The type should fit within a TInt.
355 @param aCol The column ordinal of the column to extract.
356 @return The value of column aCol. */
357 inline TInt RDbRowSet::ColInt(TDbColNo aCol) const
359 return ColInt32(aCol);
362 /** Extracts an unsigned integer column value.
364 @param aCol The column ordinal of the column to extract.
365 @return The value of column aCol. */
366 inline TUint RDbRowSet::ColUint(TDbColNo aCol) const
368 return ColUint32(aCol);
371 /** Extracts a TReal64 column value.
373 @param aCol The column ordinal of the column to extract.
374 @return The value of column aCol. */
375 inline TReal RDbRowSet::ColReal(TDbColNo aCol) const
377 return ColReal64(aCol);
380 /** Sets a signed integer column value. The type should fit into a TInt.
382 @param aCol The column ordinal of the column to set.
383 @param aValue The new column value. */
384 inline void RDbRowSet::SetColL(TDbColNo aCol,TInt aValue)
386 SetColL(aCol, TInt32(aValue));
389 /** Sets a signed integer column value. The type should fit into a TInt.
391 @param aCol The column ordinal of the column to set.
392 @param aValue The new column value. */
393 inline void RDbRowSet::SetColL(TDbColNo aCol,TUint aValue)
395 SetColL(aCol,TUint32(aValue));
399 /** Constructs this object with a size of ENone. This can be used to request a
400 view with no pre-evaluation window. */
401 inline TDbWindow::TDbWindow():
406 /** Constructs this object with a size of EUnlimited. This is used to request a
407 completely pre-evaluated view. The constant KDbUnlimitedWindow is an instance
410 @param The argument is only used to direct the compiler to construct an unlimited
412 inline TDbWindow::TDbWindow(TUnlimited):
417 /** Returns the number of rows stored by the view.
419 @return The number of rows stored by the window. This could be one of the
420 special values ENone or EUnlimited. */
421 inline TInt TDbWindow::Size() const
426 /** Returns the preferred position in the window of the current row marker. i.e.
427 the position with the forward and backward slots as requested.
429 @return The preferred position in the window. It is undefined if this is not
431 inline TInt TDbWindow::PreferredPos() const
433 return iPreferredPos;
438 inline TUnion<T>::operator const T&() const
440 return *(const T*)&iRep[0];
444 inline const T& TUnion<T>::operator()() const
446 return *(const T*)&iRep[0];
450 inline T& TUnion<T>::operator()()
452 return *(T*)&iRep[0];
456 inline void TUnion<T>::Set(const T& aT)
461 // Class TDbLookupKey
462 inline TDbLookupKey::TDbLookupKey():
467 inline TInt TDbLookupKey::Count() const
472 inline const TDbLookupKey::SColumn* TDbLookupKey::First() const
478 /** Constructs an empty key value.
480 Add() should be called before the key value is used for lookup. */
481 inline TDbSeekKey::TDbSeekKey():
486 /** Constructs a key value for an TInt8, TInt16 or TInt32 column.
488 @param aKey The key value to lookup. */
489 inline TDbSeekKey::TDbSeekKey(TInt aKey):
495 /** Constructs a key value for a Bit, TUint8, TUint16 or TUint32 column.
497 @param aKey The key value to lookup. */
498 inline TDbSeekKey::TDbSeekKey(TUint aKey):
504 inline TDbSeekKey::TDbSeekKey(TInt64 aKey):
510 /** Constructs a key value for a TReal32 column.
512 @param aKey The key value to lookup. */
513 inline TDbSeekKey::TDbSeekKey(TReal32 aKey):
519 /** Construct a key value for a TReal64 column.
521 @param aKey The key value to lookup. */
522 inline TDbSeekKey::TDbSeekKey(TReal64 aKey):
528 /** Constructs a key value for a TDateTime column.
530 @param aKey The key value to lookup. */
531 inline TDbSeekKey::TDbSeekKey(TTime aKey):
537 /** Constructs a key value for a non-Unicode text column.
539 Note that the seek key does not copy the text data contained by the descriptor.
540 This needs to be retained until the seek key is no longer required.
542 @param aKey The key value to lookup. */
543 inline TDbSeekKey::TDbSeekKey(const TDesC8& aKey):
549 /** Constructs a key value for a Unicode text column.
551 Note that the seek key does not copy the text data contained by the descriptor.
552 This needs to be retained until the seek key is no longer required.
554 @param aKey The key value to lookup. */
555 inline TDbSeekKey::TDbSeekKey(const TDesC16& aKey):
561 inline TDbSeekKey::TDbSeekKey(TInt aKeys,TInt):
566 // Class TDbSeekMultiKey
567 /** Constructs an empty multi-column key value. */
569 inline TDbSeekMultiKey<S>::TDbSeekMultiKey():
575 /** Sets the specified index as the active index for this table. The rows will
576 be presented in index order, and this index key will be used for lookup by
577 the SeekL() function.
579 If successful, the rowset is reset to the beginning.
581 @param anIndex The name of the index to activate.
582 @return KErrNone, if successful, otherwise one of the system-wide error codes.
583 Specifically:KErrWrite if the table was created with insert-only access.KErrNotFound
584 if the index does not exist on the table. This can also be one of the DBMS
585 database error codes.
587 @capability Note For a secure shared database, the caller must satisfy the read
588 access policy for the table.
590 inline TInt RDbTable::SetIndex(const TDesC& anIndex)
592 return SetIndex(&anIndex);
595 /** Sets the ordering to be the underlying ordering of the rows — this will
596 usually provide faster navigation of the rowset.
598 @return KErrNone, if successful, otherwise one of the system-wide error codes.
599 Specifically:KErrWrite if the table was created with insert-only access. This
600 can also be one of the DBMS database error codes.
602 @capability Note For a secure shared database, the caller must satisfy the read
603 access policy for the table.
605 inline TInt RDbTable::SetNoIndex()
610 /** Constructs this object by invoking the matching constructor for RWriteStream.
612 @param anExternalizer Specifies an externaliser */
613 inline RDbColWriteStream::RDbColWriteStream(const MExternalizer<TStreamRef> &anExternalizer):
614 RWriteStream(anExternalizer)
619 inline TInt CDbNames::Count() const
621 return iList.Count();
624 inline const TDesC& CDbNames::operator[](TInt anIndex) const
626 return iList[anIndex];
632 Creates a table on the database.
634 @param aName Table name.
635 @param aColSet A set of column definitions which describe the table structure.
637 @return KErrNone The operation has completed successfully;
638 KErrNoMemory, an out of memory condition has occurred;
639 KErrAlreadyExists, a table with that name already exists;
640 KErrArgument, empty column set, duplicated column name, invalid column length;
641 KErrBadName, invalid table name, invalid column name (containing spaces for example);
642 KErrNotSupported, unknown column type, unknown column attributes;
643 KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
644 Note that other system-wide error codes may also be returned.
646 @capability Note For a secure shared database, the caller must satisfy the schema
647 access policy for the database.
649 inline TInt RDbDatabase::CreateTable(const TDesC& aName,const CDbColSet& aColSet)
651 return CreateTable(aName,aColSet,NULL);
655 Creates a table on the database.
657 @param aName Table name.
658 @param aColSet A set of column definitions which describe the table structure.
659 @param aPrimaryKey Primary key definition.
661 @return KErrNone The operation has completed successfully;
662 KErrNoMemory, an out of memory condition has occurred;
663 KErrAlreadyExists, a table with that name already exists;
664 KErrArgument, empty column set, duplicated column name, invalid column length;
665 KErrBadName, invalid table name, invalid column name (containing spaces for example);
666 KErrNotSupported, unknown column type, unknown column attributes;
667 KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
668 Note that other system-wide error codes may also be returned.
670 @capability Note For a secure shared database, the caller must satisfy the schema
671 access policy for the database.
673 inline TInt RDbDatabase::CreateTable(const TDesC& aName,const CDbColSet& aColSet,const CDbKey& aPrimaryKey)
675 return CreateTable(aName,aColSet,&aPrimaryKey);
678 // Class RDbIncremental
679 /** Initiates the execution of a DDL (SQL schema update) statement on the database.
681 This is the incremental form of RDbDatabase::Execute().
683 Note that to begin executing a DML (SQL data update) statement incrementally,
684 use the RDbUpdate class.
686 @param aDatabase The database on which the DDL (SQL schema update) statement
688 @param aSql The DDL SQL statement to be executed on the database.
689 @param aStep On return, contains the initial step count for the incremental
690 operation. This value should be passed in to subsequent calls to Next() to
691 continue the operation.
692 @return KErrNone if successful, otherwise another of the system-wide error
694 @see RDbDatabase::Execute()
697 @capability Note For a secure shared database, the caller must satisfy:
698 - the schema access policy for the database, if the SQL statement is
700 - the write access policy for the table in the SQL, if the SQL statement is
701 INSERT/UPDATE/DELETE;
703 inline TInt RDbIncremental::Execute(RDbDatabase& aDatabase,const TDesC& aSql,TInt& aStep)
705 return Execute(aDatabase,aSql,EDbCompareNormal,aStep);
708 ////////////////////////////////////////////////////////////////////////////////////////////
712 @return The number of elements of the controlled strings array.
714 inline TInt CDbStrings::Count() const
716 return iList.Count();
720 Allows access to "aIndex" element of the controlled strings array.
721 @return "aIndex" element of the controlled strings array.
723 inline const TDesC& CDbStrings::operator[](TInt aIndex) const
725 return iList[aIndex];