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.
16 #if !defined(__D32DBMS_H__)
26 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
27 #include <d32dbmsconstants.h>
30 // other classes referenced
33 class CDbRowConstraint;
50 template<class T> class RDbHandle;
51 class RDbRowConstraint;
53 class RDbColReadStream;
54 class RDbColWriteStream;
57 template<class T> class TUnion;
60 template<TInt S> class TDbSeekMultiKey;
68 class RDbNamedDatabase;
69 class RDbStoreDatabase;
72 The maximum length for a DBMS name: 64 characters.
76 const TInt KDbMaxName=0x40;
79 The maximum length for a DBMS column name: 64 characters.
83 const TInt KDbMaxColName=KDbMaxName;
86 Represents a writable DBMS name. It maps to a modifiable buffer descriptor
87 with maximum size KDbMaxName.
91 A DBMS name must begin with an alphabetic character, after which any alphabetic,
92 numeric or the _ (underscore) character may be used. DBMS names are also limited
93 to 64 characters in length.
95 Table names must be unique within a database, and columns and indexes must
96 have unique names within the table to which they belong. For the purposes
97 of uniqueness and identification, the names are folded before comparison,
98 so two columns named column_one and Column_ONE are considered to have the
105 typedef TBuf<KDbMaxName> TDbName;
107 /** Represents a non-writeable DBMS name. It maps to a non modifiable buffer descriptor
108 with maximum size KDbMaxName.
112 A DBMS name must begin with an alphabetic character, after which any alphabetic,
113 numeric or the _ (underscore) character may be used. DBMS names are also limited
114 to 64 characters in length.
116 Table names must be unique within a database, and columns and indexes must
117 have unique names within the table to which they belong. For the purposes
118 of uniqueness and identification, the names are folded before comparison,
119 so two columns named column_one and Column_ONE are considered to have the
126 typedef TBufC<KDbMaxName> TDbNameC;
128 /** Represents a writable DBMS column name. It maps to a modifiable buffer descriptor
129 with maximum size KDbMaxColName.
133 A DBMS name must begin with an alphabetic character, after which any alphabetic,
134 numeric or the _ (underscore) character may be used. DBMS names are also limited
135 to 64 characters in length.
137 Table names must be unique within a database, and columns and indexes must
138 have unique names within the table to which they belong. For the purposes
139 of uniqueness and identification, the names are folded before comparison,
140 so two columns named column_one and Column_ONE are considered to have the
145 typedef TBuf<KDbMaxColName> TDbColName;
147 /** Represents a non-writable DBMS column name. It maps to a non-modifiable buffer
148 descriptor with maximum size KDbMaxColName.
152 A DBMS name must begin with an alphabetic character, after which any alphabetic,
153 numeric or the _ (underscore) character may be used. DBMS names are also limited
154 to 64 characters in length.
156 Table names must be unique within a database, and columns and indexes must
157 have unique names within the table to which they belong. For the purposes
158 of uniqueness and identification, the names are folded before comparison,
159 so two columns named column_one and Column_ONE are considered to have the
166 typedef TBufC<KDbMaxColName> TDbColNameC;
168 /** Specifies when DBMS objects require a column ordinal to identify a column in
169 a column set or in a rowset.
171 Note that KDbNullColNo is a special value of TDbColNo used to indicate that
172 no such column exists.
176 typedef TInt TDbColNo;
179 Indicates that a specified column does not exist.
183 const TDbColNo KDbNullColNo=0;
186 A value returned by RDbRowSet::Count() when the number of rows cannot be determined.
192 const TInt KDbUndefinedCount=-1;
195 The length of a column is undefined.
199 const TInt KDbUndefinedLength=-1;
202 The default text column length. This is equal to 50.
206 const TInt KDbDefaultTextColLength=50;
209 Represents every supported column type.
215 /** The column stores a single bit.
217 Representation range: 0 to 1
226 /** The column stores an 8-bit signed integer.
228 Representation range: -2^7 to 2^7 - 1
237 /** The column stores an 8-bit unsigned integer.
239 Representation range: 0 to 2^8-1
248 /** The column stores a 16-bit signed integer.
250 Representation range: -2^15 to 2^15 - 1
259 /** The column stores a 16-bit unsigned integer.
261 Representation range: 0 to 2^16-1
270 /** The column stores a 32-bit signed integer.
272 Representation range: -2^31 to 2^31 - 1
281 /** The column stores a 32-bit unsigned integer.
283 Representation range: 0 to 2^32-1
292 /** The column stores a 64-bit signed integer.
294 Representation range: -2^63 to 2^63 - 1
303 /** The column stores a 32-bit floating point value.
305 Representation range: 1.4 X 10^-45 to 3.40282 X 10^38
314 /** The column stores a 64-bit floating point value.
316 Representation range: 2.2 X 10^-308 to 1.79769 X 10^308
325 /** The column stores a date/time value.
327 Representation range: 1/1/0 to 31/12/9999
336 /** The column stores a (short) variable length of non-Unicode text data.
338 Representation range: 0 to 256 characters
340 Storage: 0 to 256 bytes
347 /** The column stores a (short) variable length of Unicode text data.
349 Representation range: 0 to 256 characters
351 Storage: 0 to 512 bytes
358 /** The column stores a (short) variable length of untyped data.
360 Representation range: 0 to 255 bytes
362 Storage: 0 to 256 bytes
369 /** The column stores a potentially large amount of non-Unicode text data.
371 Representation range: 0 to 2^31 characters
373 Storage: 0 to 2 Gbytes
377 Index key: Truncated */
380 /** The column stores a potentially large amount of Unicode text data.
382 Representation range: 0 to 2^30 characters
384 Storage: 0 to 2 Gbytes
388 Index key: Truncated */
391 /** The column stores a potentially large amount of untyped data.
393 Representation range: 0 to 2^31 bytes
395 Storage: 0 to 2 Gbytes
402 /** This is equivalent to EDbColText8 if the build is narrow, and
403 EDbColText16 if the build is Unicode. */
404 EDbColText=EDbColText16,
406 /** This is equivalent to EDbColLongText8 if the build is narrow, and
407 EDbColLongText16 if the build is Unicode. */
408 EDbColLongText=EDbColLongText16
412 Represents different ways of comparing Text and LongText columns.
414 This affects the ordering of indexes (see CDbKey), the evaluation of SQL
415 queries and matching row constraints (see TDbQuery).
419 enum TDbTextComparison
421 /** Use standard text comparison and ordering. */
423 /** Use folded text for comparison and ordering. */
425 /** Use collation for comparison and ordering. */
430 Defines a column in a table or rowset.
432 The data members are public because this is really a structure to group the
433 attributes of the column together.
435 Three non-default constructors are provided for convenience.
441 friend class CDbColSet;
443 enum {ENotNull=0x01,EAutoIncrement=0x02};
445 /** Constructs an uninitialised TDbCol. It is necessary because there are
446 also non-default constructors in this class. */
448 inline TDbCol(const TDbCol&);
449 inline TDbCol& operator=(const TDbCol&);
450 IMPORT_C TDbCol(const TDesC& aName,TDbColType aType);
451 IMPORT_C TDbCol(const TDesC& aName,TDbColType aType,TInt aMaxLength);
452 static inline TBool IsLong(TDbColType aType);
454 inline TDbCol(const TDesC& aName);
456 /** The column type. */
458 /** The maximum length of data that can be stored in a Text or Binary
461 /** A set of flags describing other column attributes. This must be one
462 of the anonymous enum values ENotNull or EAutoIncrement. */
464 /** The column name. */
468 /** Manages a set of column definitions which describe a table or rowset
469 structure. Column definitions can be added and removed. The set can be
470 iterated over, and ordinals for a column can be looked up.
472 The class is not intended for user derivation.
476 class CDbColSet : public CBase
478 friend class TDbColSetIter;
480 IMPORT_C CDbColSet();
481 IMPORT_C static CDbColSet* NewL();
482 IMPORT_C static CDbColSet* NewLC();
483 IMPORT_C ~CDbColSet();
484 inline const TDbCol& operator[](TDbColNo aCol) const;
485 IMPORT_C const TDbCol* Col(const TDesC& aColName) const;
486 IMPORT_C TDbColNo ColNo(const TDesC& aColName) const;
487 inline TInt Count() const;
489 IMPORT_C CDbColSet& AddL(const TDbCol& aCol);
490 IMPORT_C void Remove(const TDesC& aColName);
492 CArrayPakFlat<TDbCol> iColumns;
496 Provides a useful way to iterate over the contents of a column set.
503 IMPORT_C TDbColSetIter(const CDbColSet& aColSet);
504 inline operator TAny* () const;
505 inline const TDbCol& operator*() const;
506 inline const TDbCol* operator->() const;
507 IMPORT_C TDbColSetIter& operator++();
508 inline TDbColSetIter operator++(TInt);
509 inline TDbColNo Col() const;
511 const TDbCol* iColumn;
513 const CArrayPakFlat<TDbCol>* iArray;
516 /** Defines a key column in an index.
518 The data members are public as this is really a structure to group the
519 attributes of the key column together. Two non-default constructors are
520 provided for convenience.
527 /** Specifies whether a key column in an index should be sorted in
528 ascending or descending order. */
531 /** Use ascending order. */
533 /** Use descending order. */
537 /** Constructs an uninitialised object. Default constructor. It is necessary
538 because there are also non-default constructors in this class. */
539 inline TDbKeyCol() {}
540 inline TDbKeyCol(const TDbKeyCol&);
541 inline TDbKeyCol& operator=(const TDbKeyCol&);
542 IMPORT_C TDbKeyCol(const TDesC& aName,TOrder anOrder=EAsc);
543 IMPORT_C TDbKeyCol(const TDesC& aName,TInt aLength,TOrder anOrder=EAsc);
545 /** The ordering of the key. */
547 /** The maximum number of characters used to index Text or LongText
548 columns. If equal to KDbUndefinedLength (the default), all the characters
549 in the defined column will be used. */
551 /** The column name for the key. */
556 Represents the definition of an index. The key may be unique or primary, it
557 can specify the sort of comparison which is made for Text columns, and it
558 has a list of columns which make up the key. The class is used to construct
559 and interrogate index keys.
561 This class is not intended for user derivation.
565 class CDbKey : public CBase
568 enum {EUnique=0x01,EPrimary=0x02};
571 IMPORT_C static CDbKey* NewL();
572 IMPORT_C static CDbKey* NewLC();
574 IMPORT_C CDbKey& AddL(const TDbKeyCol& aKeyCol);
575 IMPORT_C void Remove(const TDesC& aColName);
576 IMPORT_C void Clear();
577 inline TInt Count() const;
578 inline const TDbKeyCol& operator[](TInt aCol) const;
579 inline void MakeUnique();
580 inline TBool IsUnique() const;
581 inline void SetComparison(TDbTextComparison aComparison);
582 inline TDbTextComparison Comparison() const;
583 inline void MakePrimary();
584 inline TBool IsPrimary() const;
586 CArrayPakFlat<TDbKeyCol> iKeys;
587 TDbTextComparison iComparison;
592 Saves the current location of a rowset, enabling rapid navigation back to a
593 previously visited row or position in the set.
595 Instances of this class are returned by RDbRowSet::Bookmark(), which can later
596 be passed to RDbRowSet::GotoL() to return to the row which was current at
597 the call to Bookmark().
599 @see RDbRowSet::Bookmark()
600 @see RDbRowSet::GotoL()
606 friend class RDbRowSet;
609 /** Stores a database bookmark. */
612 TUint32 iMark[ESize];
619 A wrapper for an SQL string combined with a text comparison mode.
621 An instance of the class is used as a parameter to RDbView::Prepare(),
622 RDbRowSet::FindL() and RDbRowConstraint::Open().
624 The evaluation of SQL queries or constraints depends on how Text columns are
625 compared so every SQL string is accompanied by a member of the TDbTextComparison
626 enumeration to indicate how comparison is done.
628 If the SQL string contains a LIKE clause with * (asterisks) wildcard then the
629 characters between them must be no longer than length 255.
630 If only one * exists then the length is taken from the start and to the end of
631 the clause. However, if the clause contains a ? (question mark) wildcard
632 within it then the characters between must be no longer than length 253.
634 @see TDbTextComparison
635 @see RDbView::Prepare()
636 @see RDbRowSet::FindL()
637 @see RDbRowConstraint::Open()
644 inline TDbQuery(const TDesC& aQuery,TDbTextComparison aComparison=EDbCompareNormal);
645 inline const TDesC& Query() const;
646 inline TDbTextComparison Comparison() const;
649 TDbTextComparison iComparison;
653 This class is internal and is not intended for use
660 inline RDbHandleBase();
663 inline void Set(CDbObject* aObject);
664 CDbObject& Object() const;
670 This class is internal and is not intended for use.
675 class RDbHandle : public RDbHandleBase
678 inline T* operator=(T* aT);
679 inline T* operator->() const;
680 inline T& operator*() const;
681 inline T* operator()() const;
685 Represents a pre-compiled SQL search-condition, which can be used to
686 test against the current row in a rowset.
688 The constraint is compiled against a specific rowset, and can only be matched
689 against the same rowset using the RDbRowSet::MatchL() function.
695 class RDbRowConstraint
697 friend class RDbRowSet;
699 IMPORT_C TInt Open(const RDbRowSet& aView,TDbQuery aCriteria);
700 IMPORT_C void Close();
702 RDbHandle<CDbRowConstraint> iConstraint;
706 An abstract base class that provides functionality which is shared between
707 SQL view objects and Table objects. This functionality includes most of the
708 cursor navigation, row retrieval and update behaviour of rowsets.
710 Rowset objects do not provide the data for the rowset on which they operate.
711 It is the responsibility of the derived classes RDbView and RDbTable to specify
714 This class is not intended for user derivation.
720 friend class RDbRowConstraint;
721 friend class RDbColReadStream;
722 friend class RDbColWriteStream;
724 /** Specifies where the rowset should navigate to in the GotoL() function.
725 Their use is encapsulated by the respective member functions FirstL(),
729 /** Move to the first row in the rowset. */
731 /** Move to the next row in the rowset. */
733 /** Move to the previous row in the rowset. */
735 /** Move to the last row in the rowset. */
737 /** Move to the position before the first row in the rowset. */
739 /** Move to the position after the last row in the rowset. */
743 /** Specifies which operations can be performed on a rowset. */
746 /** All operations can be performed on the rowset. */
748 /** Row navigation and reading are permitted. */
750 /** Inserting new rows is the only valid operation on the rowset. */
754 /** Specifies the direction to search through the rowset when using the
758 /** Search from the current row forwards through the set. */
760 /** Search from the current row backwards through the set. */
764 /** Specifies whether the CountL() function should ensure that it returns
765 the exact value which may be a non-trivial task. */
768 /** Take the time, if necessary, to return the exact value. */
770 /** Return any immediately available value. */
774 IMPORT_C void Close();
775 IMPORT_C void Reset();
777 IMPORT_C CDbColSet* ColSetL() const;
778 IMPORT_C TInt ColCount() const;
779 IMPORT_C TDbColType ColType(TDbColNo aCol) const;
780 IMPORT_C TDbCol ColDef(TDbColNo aCol) const;
782 IMPORT_C TBool AtRow() const;
783 IMPORT_C TBool AtBeginning() const;
784 IMPORT_C TBool AtEnd() const;
786 IMPORT_C TInt CountL(TAccuracy anAccuracy=EEnsure) const;
787 IMPORT_C TBool IsEmptyL() const;
789 IMPORT_C TBool GotoL(TPosition aPosition);
790 inline void BeginningL();
792 inline TBool FirstL();
793 inline TBool LastL();
794 inline TBool NextL();
795 inline TBool PreviousL();
797 IMPORT_C TDbBookmark Bookmark() const;
798 IMPORT_C void GotoL(const TDbBookmark& aMark);
800 IMPORT_C TBool MatchL(const RDbRowConstraint& aConstraint);
801 IMPORT_C TInt FindL(TDirection aDirection,TDbQuery aCriteria);
803 IMPORT_C void GetL();
804 IMPORT_C void InsertL();
805 IMPORT_C void InsertCopyL();
806 IMPORT_C void UpdateL();
807 IMPORT_C void PutL();
808 IMPORT_C void Cancel();
809 IMPORT_C void DeleteL();
811 inline TBool IsColNull(TDbColNo aCol) const;
812 IMPORT_C TInt ColSize(TDbColNo aCol) const;
813 IMPORT_C TInt ColLength(TDbColNo aCol) const;
815 IMPORT_C TInt8 ColInt8(TDbColNo aCol) const;
816 IMPORT_C TInt16 ColInt16(TDbColNo aCol) const;
817 IMPORT_C TInt32 ColInt32(TDbColNo aCol) const;
818 IMPORT_C TInt64 ColInt64(TDbColNo aCol) const;
819 inline TInt ColInt(TDbColNo aCol) const;
820 IMPORT_C TUint8 ColUint8(TDbColNo aCol) const;
821 IMPORT_C TUint16 ColUint16(TDbColNo aCol) const;
822 IMPORT_C TUint32 ColUint32(TDbColNo aCol) const;
823 inline TUint ColUint(TDbColNo aCol) const;
824 IMPORT_C TReal32 ColReal32(TDbColNo aCol) const __SOFTFP;
825 IMPORT_C TReal64 ColReal64(TDbColNo aCol) const __SOFTFP;
826 inline TReal ColReal(TDbColNo aCol) const;
827 IMPORT_C TTime ColTime(TDbColNo aCol) const;
828 IMPORT_C TPtrC8 ColDes8(TDbColNo aCol) const;
829 IMPORT_C TPtrC16 ColDes16(TDbColNo aCol) const;
830 IMPORT_C TPtrC ColDes(TDbColNo aCol) const;
832 IMPORT_C void SetColNullL(TDbColNo aCol);
833 inline void SetColL(TDbColNo aCol,TInt aValue);
834 IMPORT_C void SetColL(TDbColNo aCol,TInt32 aValue);
835 IMPORT_C void SetColL(TDbColNo aCol,TInt64 aValue);
836 inline void SetColL(TDbColNo aCol,TUint aValue);
837 IMPORT_C void SetColL(TDbColNo aCol,TUint32 aValue);
838 IMPORT_C void SetColL(TDbColNo aCol,TReal32 aValue) __SOFTFP;
839 IMPORT_C void SetColL(TDbColNo aCol,TReal64 aValue) __SOFTFP;
840 IMPORT_C void SetColL(TDbColNo aCol,TTime aValue);
841 IMPORT_C void SetColL(TDbColNo aCol,const TDesC8& aValue);
842 IMPORT_C void SetColL(TDbColNo aCol,const TDesC16& aValue);
844 inline MStreamBuf* ColSourceL(TDbColNo aCol) const;
845 inline MStreamBuf* ColSinkL(TDbColNo aCol);
846 CDbCursor& CheckCol(TDbColNo aCol) const;
847 TDbColumnC ColumnC(TDbColNo aCol,TDbColType aType) const;
848 TDbColumn Column(TDbColNo aCol,TDbColType aType);
850 RDbHandle<CDbCursor> iCursor;
854 Allows any column value to be read as stream data.
856 Note that this is the only way to extract the contents of a Long column from
859 Only one column in a rowset object can be opened for reading as a stream at
860 a time, and while it is open no column in the same rowset object may be set
861 using RDbColWriteStream.
863 Null columns result in a read stream with no data. Small numeric columns are
864 maintained in memory as 32-bit values; hence reading a Uint8 column as a stream
865 results in 4 bytes of stream data, not 1.
869 class RDbColReadStream : public RReadStream
872 IMPORT_C void OpenL(const RDbRowSet& aView,TDbColNo aCol);
873 IMPORT_C void OpenLC(const RDbRowSet& aView,TDbColNo aCol);
877 Writes Long columns when inserting or updating rows in a rowset.
879 Only one column in a rowset object can be opened for writing as a stream at
884 class RDbColWriteStream : public RWriteStream
887 /** Constructs this object by invoking the default constructor for
889 inline RDbColWriteStream() {}
890 inline RDbColWriteStream(const MExternalizer<TStreamRef> &anExternalizer);
891 IMPORT_C void OpenL(RDbRowSet& aView,TDbColNo aCol);
892 IMPORT_C void OpenLC(RDbRowSet& aView,TDbColNo aCol);
896 Describes the desired shape of a view's pre-evaluation window.
898 An instance of this class is passed to the RDbView object as part of the
899 Prepare() function. The different constructors for TDbWindow can specify a view:
901 without pre-evaluation
903 with full pre-evaluation
905 with limited pre-evaluation.
914 /** Denotes a full pre-evaluation window. */
917 /** No limit on how many rows may be in the window. */
923 inline TDbWindow(TUnlimited);
924 IMPORT_C TDbWindow(TInt aForeSlots,TInt aRearSlots);
925 inline TInt Size() const;
926 inline TInt PreferredPos() const;
932 #if defined(__NO_CLASS_CONSTS__)
937 #define KDbUnlimitedWindow TDbWindow(TDbWindow::EUnlimited)
943 const TDbWindow KDbUnlimitedWindow=TDbWindow(TDbWindow::EUnlimited);
947 Generates rowsets from an SQL query. The query is prepared and evaluated
948 using the interface to this class, while the rowset is manipulated using the
949 RDbRowset base class.
951 There are no special rules to consider when deriving from this class.
955 class RDbView : public RDbRowSet
958 IMPORT_C TInt Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,TAccess anAccess=EUpdatable);
959 IMPORT_C TInt Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,const TDbWindow& aWindow);
960 IMPORT_C TInt Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,const TDbWindow& aWindow,TAccess anAccess);
961 IMPORT_C TInt EvaluateAll();
962 IMPORT_C TInt Evaluate();
963 IMPORT_C void Evaluate(TRequestStatus& aStatus);
964 IMPORT_C TBool Unevaluated() const;
968 This class is internal and is not intended for use.
976 inline operator const T&() const;
977 inline const T& operator()() const;
978 inline T& operator()();
979 inline void Set(const T& aT);
981 TUint8 iRep[sizeof(T)];
985 This class is internal and is not intended for use.
998 TUnion<TInt64> iInt64;
1001 TUnion<TTime> iTime;
1002 struct {const TText8* iPtr;TInt iLength;} iDes8;
1003 struct {const TText16* iPtr;TInt iLength;} iDes16;
1008 inline TDbLookupKey();
1009 inline TInt Count() const;
1010 inline const SColumn* First() const;
1011 void Add(TInt aKey);
1012 void Add(TUint aKey);
1013 void Add(TInt64 aKey);
1014 void Add(TReal32 aKey) __SOFTFP;
1015 void Add(TReal64 aKey) __SOFTFP;
1016 void Add(TTime aKey);
1017 void Add(const TDesC8& aKey);
1018 void Add(const TDesC16& aKey);
1023 SColumn iKey[1]; // at least one
1029 The class encapsulates a key value which is passed to RDbTable::SeekL(), for
1030 lookup in the currently active index on that rowset.
1032 An instance of this class can store a key value of any type.
1034 Note that the class can only hold a single-column key. Use TDbSeekMultiKey
1035 for multi-column keys.
1037 @see TDbSeekMultiKey
1044 friend class RDbTable;
1046 inline TDbSeekKey();
1047 inline TDbSeekKey(TInt aKey);
1048 inline TDbSeekKey(TUint aKey);
1049 inline TDbSeekKey(TInt64 aKey);
1050 inline TDbSeekKey(TReal32 aKey);
1051 inline TDbSeekKey(TReal64 aKey);
1052 inline TDbSeekKey(TTime aKey);
1053 inline TDbSeekKey(const TDesC8& aKey);
1054 inline TDbSeekKey(const TDesC16& aKey);
1055 IMPORT_C TDbSeekKey& Add(TInt aKey);
1056 IMPORT_C TDbSeekKey& Add(TUint aKey);
1057 IMPORT_C TDbSeekKey& Add(TInt64 aKey);
1058 IMPORT_C TDbSeekKey& Add(TReal32 aKey) __SOFTFP;
1059 IMPORT_C TDbSeekKey& Add(TReal64 aKey) __SOFTFP;
1060 IMPORT_C TDbSeekKey& Add(TTime aKey);
1061 IMPORT_C TDbSeekKey& Add(const TDesC8& aKey);
1062 IMPORT_C TDbSeekKey& Add(const TDesC16& aKey);
1064 TDbLookupKey& Check();
1066 inline TDbSeekKey(TInt aKeys,TInt);
1073 Database multi-column key value.
1075 The class extends the behaviour of TDbSeekKey by allowing multi-column indexes
1076 to be searched using multi-column key values.
1078 The template parameter S specifies the maximum number of column values that
1079 can be added to the key value.
1081 Use the TDbSeekKey::Add() members to append the values for each column in
1087 class TDbSeekMultiKey : public TDbSeekKey
1090 inline TDbSeekMultiKey();
1092 TDbLookupKey::SColumn iExtraKeys[S-1];
1096 Provides access to table data as a rowset, allowing manipulation of a named
1097 table in the database. Additionally, a named index can be used to order the
1098 rowset, and to provide fast key-based row retrieval from the table.
1100 There are no special rules to consider when deriving from this class.
1104 class RDbTable : public RDbRowSet
1107 /** Database table seek comparison types. */
1110 /** Retrieve the last row which is strictly less than the key value. */
1112 /** Retrieve the last row which is equal to or less than the key
1115 /** Retrieve the first row which is equal to the key value. */
1117 /** Retrieve the first row which is equal to or greater than the key
1120 /** Retrieve the first row which is strictly greater than the key
1125 IMPORT_C TInt Open(RDbDatabase& aDatabase,const TDesC& aName,TAccess anAccess=EUpdatable);
1126 inline TInt SetIndex(const TDesC& anIndex);
1127 inline TInt SetNoIndex();
1128 IMPORT_C TBool SeekL(const TDbSeekKey& aKey,TComparison aComparison=EEqualTo);
1130 IMPORT_C TInt SetIndex(const TDesC* anIndex);
1137 class CDbNames : public CBase
1142 static CDbNames* NewLC();
1144 inline TInt Count() const;
1145 inline const TDesC& operator[](TInt anIndex) const;
1146 IMPORT_C void AddL(const TDesC& aName);
1148 CArrayPakFlat<TDbNameC> iList;
1154 typedef CDbNames CDbTableNames,CDbIndexNames,CDbDatabaseNames;
1157 The maximum length for a generic DBMS string, which might be transferred from DBMS server
1158 to the DBMS client using IPC.
1162 const TInt KDbMaxStrLen = 256;
1165 Represents a generic read-only DBMS string. It maps to a non-modifiable buffer descriptor
1166 with maximum size KDbMaxStrLen.
1172 typedef TBufC<KDbMaxStrLen> TDbStringC;
1175 CDbStrings encapsulates functionality used for transferring an array of strings from
1176 DBMS server to the DBMS client. The maximal length of each element of the array is
1177 KDbMaxStrLen characters.
1178 The typical usage pattern of CDbStrings class is:
1180 CDbStrings* strings = <a call of an exported DBMS method>;
1181 TInt cnt = strings.Count();
1182 for(TInt i=0;i<cnt;++i)
1184 const TDesC& str = (*strings)[i];
1185 <do something with "str" variable>;
1192 class CDbStrings : public CBase
1195 inline CDbStrings();
1197 static CDbStrings* NewLC();
1198 virtual ~CDbStrings();
1199 inline TInt Count() const;
1200 inline const TDesC& operator[](TInt aIndex) const;
1201 void AddL(const TDesC& aStr);
1203 CArrayPakFlat<TDbStringC> iList;
1207 Abstract class providing the functionality of a database.
1209 The source of the database and the implementation characteristics of a particular
1210 database are provided by a class derived from RDbDatabase.
1212 DBMS has one such implementation: the store database.
1214 This class is not intended for user derivation.
1216 Note: For functions (i.e. Execute) that take an Sql string, if the string
1217 contains a LIKE clause with * (asterisks) wildcard then the
1218 characters between them must be no longer than length 255.
1219 If only one * exists then the length is taken from the start and to the end of
1220 the clause. However, if the clause contains a ? (question mark) wildcard
1221 within it then the characters between must be no longer than length 253.
1228 friend class RDbView;
1229 friend class RDbTable;
1230 friend class RDbIncremental;
1231 friend class RDbUpdate;
1232 friend class RDbNotifier;
1234 struct TSize {TInt iSize;TInt iUsage;};
1236 IMPORT_C void Close();
1237 IMPORT_C TInt Destroy();
1239 IMPORT_C TBool IsDamaged() const;
1240 IMPORT_C TInt Recover();
1242 IMPORT_C TInt UpdateStats();
1243 IMPORT_C TSize Size() const;
1244 IMPORT_C TInt Compact();
1245 IMPORT_C TInt Begin();
1246 IMPORT_C TInt Commit();
1247 IMPORT_C void Rollback();
1248 IMPORT_C TBool InTransaction() const;
1250 inline TInt CreateTable(const TDesC& aName,const CDbColSet& aDef);
1251 inline TInt CreateTable(const TDesC& aName,const CDbColSet& aDef,const CDbKey& aPrimaryKey);
1252 IMPORT_C TInt DropTable(const TDesC& aName);
1253 IMPORT_C TInt AlterTable(const TDesC& aName,const CDbColSet& aNewDef);
1254 IMPORT_C TInt CreateIndex(const TDesC& aName,const TDesC& aTable,const CDbKey& aKey);
1255 IMPORT_C TInt DropIndex(const TDesC& aName,const TDesC& aTable);
1257 IMPORT_C TInt Execute(const TDesC& aSql,TDbTextComparison aComparison=EDbCompareNormal);
1259 IMPORT_C CDbTableNames* TableNamesL() const;
1260 IMPORT_C CDbColSet* ColSetL(const TDesC& aName) const;
1261 IMPORT_C CDbIndexNames* IndexNamesL(const TDesC& aTable) const;
1262 IMPORT_C CDbKey* KeyL(const TDesC& aName,const TDesC& aTable) const;
1264 IMPORT_C TInt CreateTable(const TDesC& aName,const CDbColSet& aColSet,const CDbKey* aPrimaryKey);
1266 RDbHandle<CDbDatabase> iDatabase;
1270 Provides the interface for performing long-running database operations in
1271 incremental steps, allowing application programs to remain responsive to other
1274 After an operation has begun, a standard interface is used to continue and
1275 complete all incremental operations. On successful return from one of the
1276 initiating functions, a step value is also returned. This gives the progress
1277 indication and is, initially, positive. This value should be passed into
1278 subsequent steps in the operation, each of which may decrement the value by
1279 some amount, although they are allowed to leave it unchanged. The value
1280 reaches zero, if, and only if the operation completes.
1282 While an incremental operation is in progress, the database cannot be used
1283 for any other operations such as opening tables or preparing views.
1285 Starting an incremental operation also requires that no rowsets are open on
1286 the database and that no commit is pending for data manipulation transactions.
1288 If no explicit transaction has been started by the database, then an automatic
1289 transaction is begun when any incremental operation is started and is committed
1290 when complete or rolled back if the operation either fails or is abandoned
1291 prior to completion.
1295 class RDbIncremental
1298 IMPORT_C void Close();
1299 IMPORT_C TInt Next(TInt& aStep);
1300 IMPORT_C void Next(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus);
1302 IMPORT_C TInt Recover(RDbDatabase& aDatabase,TInt& aStep);
1303 IMPORT_C TInt Compact(RDbDatabase& aDatabase,TInt& aStep);
1304 IMPORT_C TInt DropTable(RDbDatabase& aDatabase,const TDesC& aTable,TInt& aStep);
1305 IMPORT_C TInt AlterTable(RDbDatabase& aDatabase,const TDesC& aTable,const CDbColSet& aNewDef,TInt& aStep);
1306 IMPORT_C TInt CreateIndex(RDbDatabase& aDatabase,const TDesC& aName,const TDesC& aTable,const CDbKey& aKey,TInt& aStep);
1307 IMPORT_C TInt DropIndex(RDbDatabase& aDatabase,const TDesC& aName,const TDesC& aTable,TInt& aStep);
1308 inline TInt Execute(RDbDatabase& aDatabase,const TDesC& aSql,TInt& aStep);
1309 IMPORT_C TInt Execute(RDbDatabase& aDatabase,const TDesC& aSql,TDbTextComparison aComparison,TInt& aStep);
1310 IMPORT_C TInt UpdateStats(RDbDatabase& aDatabase,TInt& aStep);
1312 RDbHandle<CDbIncremental> iState;
1316 Provides an interface to allow incremental execution of a DML (SQL data
1319 This class offers similar behaviour to the RDbIncremental class, in that it
1320 allows an application to perform long running operations while remaining
1321 responsive to events. However, unlike that class, RDbUpdate is restricted to
1322 executing DML statements.
1331 IMPORT_C TInt Execute(RDbDatabase& aDatabase,const TDesC& aSql,TDbTextComparison aComparison=EDbCompareNormal);
1332 IMPORT_C void Close();
1334 IMPORT_C TInt Next();
1335 IMPORT_C void Next(TRequestStatus& aStatus);
1336 IMPORT_C TInt RowCount() const;
1338 RDbHandle<CDbIncremental> iUpdate;
1339 TPckgBuf<TInt> iRows;
1343 Provides notification of database changes to clients.
1345 This is useful for shared databases.
1352 /** Defines the events which may be reported by a DBMS change notifier
1353 through this RDbNotifier object.
1355 Each enumerator corresponds to a distinct event type.
1357 The changes are reported through a TRequestStatus object when an
1358 outstanding notification request completes.
1362 If further database events occur while a client is handling the completion
1363 of a previous event, the notifier remembers the most significant event. The
1364 order of importance is:
1366 ERecover > ERollback > ECommit
1368 where the symbol > means "is more important than" */
1371 /** The database has been closed. */
1373 /** All read locks have been removed. */
1375 /** A transaction has been committed. */
1377 /** A transaction has been rolled back */
1379 /** The database has been recovered */
1383 IMPORT_C TInt Open(RDbDatabase& aDatabase);
1384 IMPORT_C void Close();
1386 IMPORT_C void NotifyUnlock(TRequestStatus& aStatus);
1387 IMPORT_C void NotifyChange(TRequestStatus& aStatus);
1388 IMPORT_C void Cancel();
1390 RDbHandle<CDbNotifier> iNotifier;
1394 Client-server databases
1396 Represents a session with the DBMS server. A thread uses this class to set
1397 up a DBMS server session and this provides the basis for sharing databases
1402 class RDbs : public RSessionBase
1406 This enum is used in GetDatabasePolicy/GetTablePolicy/GetTablePolicies calls and specifies
1407 requested security policy type: read/write/schema.
1411 typedef enum {EReadPolicy, EWritePolicy, ESchemaPolicy} TPolicyType;
1414 IMPORT_C static TVersion Version();
1415 IMPORT_C TInt Connect();
1416 IMPORT_C CDbDatabaseNames* DatabaseNamesL(TDriveNumber aDrive, TUid aPolicyUid);
1417 IMPORT_C TInt CopyDatabase(const TDesC& aSrcDbName, const TDesC& aDestDbName, TUid aPolicyUid);
1418 IMPORT_C TInt DeleteDatabase(const TDesC& aDbName, TUid aPolicyUid);
1419 IMPORT_C TInt GetDatabasePolicy(TUid aPolicyUid, TPolicyType aPolicyType,
1420 TSecurityPolicy& aDbPolicy);
1421 IMPORT_C TInt GetTablePolicy(TUid aPolicyUid, const TDesC& aTableName,
1422 TPolicyType aPolicyType, TSecurityPolicy& aTablePolicy);
1423 IMPORT_C TInt GetTablePolicies(TUid aPolicyUid, const TDesC& aTableName,
1424 TPolicyType aPolicyType,
1425 TSecurityPolicy& aDbPolicy, TSecurityPolicy& aTablePolicy);
1427 IMPORT_C void ResourceMark();
1428 IMPORT_C void ResourceCheck();
1429 IMPORT_C TInt ResourceCount();
1430 IMPORT_C void SetHeapFailure(TInt aTAllocFail,TInt aRate);
1432 IMPORT_C TInt ReserveDriveSpace(TInt aDriveNo, TInt aSpace);
1433 IMPORT_C void FreeReservedSpace(TInt aDriveNo);
1434 IMPORT_C TInt GetReserveAccess(TInt aDriveNo);
1435 IMPORT_C TInt ReleaseReserveAccess(TInt aDriveNo);
1437 IMPORT_C TInt GetBackupPath(TSecureId aRequesterSid, const TDesC& aDbName,
1438 TUid aDbPolicyUid, TDes& aBackupPath);
1439 IMPORT_C CDbStrings* BackupPathsL(TSecureId aRequesterSid, TUid aDbPolicyUid);
1443 TInt SessionMessage(TInt aFunction);
1444 TInt GetPolicy(TUid aPolicyUid, const TDesC& aTableName,
1445 TUint aMask, TSecurityPolicy& aPolicy);
1449 Generic database implementation
1453 class RDbNamedDatabase : public RDbDatabase
1456 /** Specifies which operations can be performed on a rowset. */
1460 /** Row navigation and reading are permitted. */
1464 IMPORT_C TInt Create(RDbs& aDbs, const TDesC& aDatabase, const TDesC& aFormat);
1465 IMPORT_C TInt Create(RFs& aFs,const TDesC& aDatabase,const TDesC& aFormat=TPtrC());
1466 IMPORT_C TInt Replace(RFs& aFs,const TDesC& aDatabase,const TDesC& aFormat=TPtrC());
1467 IMPORT_C TInt Open(RFs& aFs,const TDesC& aDatabase,const TDesC& aFormat=TPtrC(),TAccess aMode=EReadWrite);
1468 IMPORT_C TInt Open(RDbs& aDbs,const TDesC& aDatabase,const TDesC& aFormat=TPtrC());
1472 DBMS Store database implementation
1476 class RDbStoreDatabase : public RDbDatabase
1479 IMPORT_C TStreamId CreateL(CStreamStore* aStore);
1480 IMPORT_C void OpenL(CStreamStore* aStore,TStreamId anId);
1481 IMPORT_C static void CompressL(CStreamStore& aStore,TStreamId aId);
1482 IMPORT_C static void DecompressL(CStreamStore& aStore,TStreamId aId);
1485 #include <d32dbms.inl>