sl@0: // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #if !defined(__D32DBMS_H__) sl@0: #define __D32DBMS_H__ sl@0: sl@0: #ifndef __S32STD_H__ sl@0: #include sl@0: #endif sl@0: #ifndef __F32FILE_H__ sl@0: #include sl@0: #endif sl@0: sl@0: #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: #include sl@0: #endif sl@0: sl@0: // other classes referenced sl@0: class RFs; sl@0: class CDbObject; sl@0: class CDbRowConstraint; sl@0: class CDbCursor; sl@0: class CDbDatabase; sl@0: class CDbIncremental; sl@0: class CDbNotifier; sl@0: class TDbColumn; sl@0: class TDbColumnC; sl@0: sl@0: // classes defined sl@0: class TDbCol; sl@0: class CDbColSet; sl@0: class TDbColSetIter; sl@0: class TDbKeyCol; sl@0: class CDbKey; sl@0: class TDbBookmark; sl@0: class TDbQuery; sl@0: class RDbHandleBase; sl@0: template class RDbHandle; sl@0: class RDbRowConstraint; sl@0: class RDbRowSet; sl@0: class RDbColReadStream; sl@0: class RDbColWriteStream; sl@0: class TDbWindow; sl@0: class RDbView; sl@0: template class TUnion; sl@0: class TDbLookupKey; sl@0: class TDbSeekKey; sl@0: template class TDbSeekMultiKey; sl@0: class RDbTable; sl@0: class CDbNames; sl@0: class RDbDatabase; sl@0: class RDbIncremental; sl@0: class RDbUpdate; sl@0: class RDbNotifier; sl@0: class RDbs; sl@0: class RDbNamedDatabase; sl@0: class RDbStoreDatabase; sl@0: sl@0: /** sl@0: The maximum length for a DBMS name: 64 characters. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: const TInt KDbMaxName=0x40; sl@0: sl@0: /** sl@0: The maximum length for a DBMS column name: 64 characters. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: const TInt KDbMaxColName=KDbMaxName; sl@0: sl@0: /** sl@0: Represents a writable DBMS name. It maps to a modifiable buffer descriptor sl@0: with maximum size KDbMaxName. sl@0: sl@0: Notes: sl@0: sl@0: A DBMS name must begin with an alphabetic character, after which any alphabetic, sl@0: numeric or the _ (underscore) character may be used. DBMS names are also limited sl@0: to 64 characters in length. sl@0: sl@0: Table names must be unique within a database, and columns and indexes must sl@0: have unique names within the table to which they belong. For the purposes sl@0: of uniqueness and identification, the names are folded before comparison, sl@0: so two columns named column_one and Column_ONE are considered to have the sl@0: same name. sl@0: sl@0: @see TBuf sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: typedef TBuf TDbName; sl@0: sl@0: /** Represents a non-writeable DBMS name. It maps to a non modifiable buffer descriptor sl@0: with maximum size KDbMaxName. sl@0: sl@0: Notes: sl@0: sl@0: A DBMS name must begin with an alphabetic character, after which any alphabetic, sl@0: numeric or the _ (underscore) character may be used. DBMS names are also limited sl@0: to 64 characters in length. sl@0: sl@0: Table names must be unique within a database, and columns and indexes must sl@0: have unique names within the table to which they belong. For the purposes sl@0: of uniqueness and identification, the names are folded before comparison, sl@0: so two columns named column_one and Column_ONE are considered to have the sl@0: same name. sl@0: sl@0: @see TBufC sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: typedef TBufC TDbNameC; sl@0: sl@0: /** Represents a writable DBMS column name. It maps to a modifiable buffer descriptor sl@0: with maximum size KDbMaxColName. sl@0: sl@0: Notes: sl@0: sl@0: A DBMS name must begin with an alphabetic character, after which any alphabetic, sl@0: numeric or the _ (underscore) character may be used. DBMS names are also limited sl@0: to 64 characters in length. sl@0: sl@0: Table names must be unique within a database, and columns and indexes must sl@0: have unique names within the table to which they belong. For the purposes sl@0: of uniqueness and identification, the names are folded before comparison, sl@0: so two columns named column_one and Column_ONE are considered to have the sl@0: same name. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: typedef TBuf TDbColName; sl@0: sl@0: /** Represents a non-writable DBMS column name. It maps to a non-modifiable buffer sl@0: descriptor with maximum size KDbMaxColName. sl@0: sl@0: Notes: sl@0: sl@0: A DBMS name must begin with an alphabetic character, after which any alphabetic, sl@0: numeric or the _ (underscore) character may be used. DBMS names are also limited sl@0: to 64 characters in length. sl@0: sl@0: Table names must be unique within a database, and columns and indexes must sl@0: have unique names within the table to which they belong. For the purposes sl@0: of uniqueness and identification, the names are folded before comparison, sl@0: so two columns named column_one and Column_ONE are considered to have the sl@0: same name. sl@0: sl@0: @see TBufC sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: typedef TBufC TDbColNameC; sl@0: sl@0: /** Specifies when DBMS objects require a column ordinal to identify a column in sl@0: a column set or in a rowset. sl@0: sl@0: Note that KDbNullColNo is a special value of TDbColNo used to indicate that sl@0: no such column exists. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: typedef TInt TDbColNo; sl@0: sl@0: /** sl@0: Indicates that a specified column does not exist. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: const TDbColNo KDbNullColNo=0; sl@0: sl@0: /** sl@0: A value returned by RDbRowSet::Count() when the number of rows cannot be determined. sl@0: sl@0: @see RDbRowSet sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: const TInt KDbUndefinedCount=-1; sl@0: sl@0: /** sl@0: The length of a column is undefined. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: const TInt KDbUndefinedLength=-1; sl@0: sl@0: /** sl@0: The default text column length. This is equal to 50. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: const TInt KDbDefaultTextColLength=50; sl@0: sl@0: /** sl@0: Represents every supported column type. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: enum TDbColType sl@0: { sl@0: /** The column stores a single bit. sl@0: sl@0: Representation range: 0 to 1 sl@0: sl@0: Storage: 1 bit sl@0: sl@0: Auto-increment: Yes sl@0: sl@0: Index key: Yes */ sl@0: EDbColBit, sl@0: sl@0: /** The column stores an 8-bit signed integer. sl@0: sl@0: Representation range: -2^7 to 2^7 - 1 sl@0: sl@0: Storage: 1 byte sl@0: sl@0: Auto-increment: Yes sl@0: sl@0: Index key: Yes */ sl@0: EDbColInt8, sl@0: sl@0: /** The column stores an 8-bit unsigned integer. sl@0: sl@0: Representation range: 0 to 2^8-1 sl@0: sl@0: Storage: 1 byte sl@0: sl@0: Auto-increment: Yes sl@0: sl@0: Index key: Yes */ sl@0: EDbColUint8, sl@0: sl@0: /** The column stores a 16-bit signed integer. sl@0: sl@0: Representation range: -2^15 to 2^15 - 1 sl@0: sl@0: Storage: 2 bytes sl@0: sl@0: Auto-increment: Yes sl@0: sl@0: Index key: Yes */ sl@0: EDbColInt16, sl@0: sl@0: /** The column stores a 16-bit unsigned integer. sl@0: sl@0: Representation range: 0 to 2^16-1 sl@0: sl@0: Storage: 2 bytes sl@0: sl@0: Auto-increment: Yes sl@0: sl@0: Index key: Yes */ sl@0: EDbColUint16, sl@0: sl@0: /** The column stores a 32-bit signed integer. sl@0: sl@0: Representation range: -2^31 to 2^31 - 1 sl@0: sl@0: Storage: 4 bytes sl@0: sl@0: Auto-increment: Yes sl@0: sl@0: Index key: Yes */ sl@0: EDbColInt32, sl@0: sl@0: /** The column stores a 32-bit unsigned integer. sl@0: sl@0: Representation range: 0 to 2^32-1 sl@0: sl@0: Storage: 4 bytes sl@0: sl@0: Auto-increment: Yes sl@0: sl@0: Index key: Yes */ sl@0: EDbColUint32, sl@0: sl@0: /** The column stores a 64-bit signed integer. sl@0: sl@0: Representation range: -2^63 to 2^63 - 1 sl@0: sl@0: Storage: 8 bytes sl@0: sl@0: Auto-increment: No sl@0: sl@0: Index key: Yes */ sl@0: EDbColInt64, sl@0: sl@0: /** The column stores a 32-bit floating point value. sl@0: sl@0: Representation range: 1.4 X 10^-45 to 3.40282 X 10^38 sl@0: sl@0: Storage: 4 bytes sl@0: sl@0: Auto-increment: No sl@0: sl@0: Index key: Yes */ sl@0: EDbColReal32, sl@0: sl@0: /** The column stores a 64-bit floating point value. sl@0: sl@0: Representation range: 2.2 X 10^-308 to 1.79769 X 10^308 sl@0: sl@0: Storage: 8 bytes sl@0: sl@0: Auto-increment: No sl@0: sl@0: Index key: Yes */ sl@0: EDbColReal64, sl@0: sl@0: /** The column stores a date/time value. sl@0: sl@0: Representation range: 1/1/0 to 31/12/9999 sl@0: sl@0: Storage: 8 bytes sl@0: sl@0: Auto-increment: No sl@0: sl@0: Index key: Yes */ sl@0: EDbColDateTime, sl@0: sl@0: /** The column stores a (short) variable length of non-Unicode text data. sl@0: sl@0: Representation range: 0 to 256 characters sl@0: sl@0: Storage: 0 to 256 bytes sl@0: sl@0: Auto-increment: No sl@0: sl@0: Index key: Yes */ sl@0: EDbColText8, sl@0: sl@0: /** The column stores a (short) variable length of Unicode text data. sl@0: sl@0: Representation range: 0 to 256 characters sl@0: sl@0: Storage: 0 to 512 bytes sl@0: sl@0: Auto-increment: No sl@0: sl@0: Index key: Yes */ sl@0: EDbColText16, sl@0: sl@0: /** The column stores a (short) variable length of untyped data. sl@0: sl@0: Representation range: 0 to 255 bytes sl@0: sl@0: Storage: 0 to 256 bytes sl@0: sl@0: Auto-increment: No sl@0: sl@0: Index key: No */ sl@0: EDbColBinary, sl@0: sl@0: /** The column stores a potentially large amount of non-Unicode text data. sl@0: sl@0: Representation range: 0 to 2^31 characters sl@0: sl@0: Storage: 0 to 2 Gbytes sl@0: sl@0: Auto-increment: No sl@0: sl@0: Index key: Truncated */ sl@0: EDbColLongText8, sl@0: sl@0: /** The column stores a potentially large amount of Unicode text data. sl@0: sl@0: Representation range: 0 to 2^30 characters sl@0: sl@0: Storage: 0 to 2 Gbytes sl@0: sl@0: Auto-increment: No sl@0: sl@0: Index key: Truncated */ sl@0: EDbColLongText16, sl@0: sl@0: /** The column stores a potentially large amount of untyped data. sl@0: sl@0: Representation range: 0 to 2^31 bytes sl@0: sl@0: Storage: 0 to 2 Gbytes sl@0: sl@0: Auto-increment: No sl@0: sl@0: Index key: No */ sl@0: EDbColLongBinary, sl@0: sl@0: /** This is equivalent to EDbColText8 if the build is narrow, and sl@0: EDbColText16 if the build is Unicode. */ sl@0: EDbColText=EDbColText16, sl@0: sl@0: /** This is equivalent to EDbColLongText8 if the build is narrow, and sl@0: EDbColLongText16 if the build is Unicode. */ sl@0: EDbColLongText=EDbColLongText16 sl@0: }; sl@0: sl@0: /** sl@0: Represents different ways of comparing Text and LongText columns. sl@0: sl@0: This affects the ordering of indexes (see CDbKey), the evaluation of SQL sl@0: queries and matching row constraints (see TDbQuery). sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: enum TDbTextComparison sl@0: { sl@0: /** Use standard text comparison and ordering. */ sl@0: EDbCompareNormal, sl@0: /** Use folded text for comparison and ordering. */ sl@0: EDbCompareFolded, sl@0: /** Use collation for comparison and ordering. */ sl@0: EDbCompareCollated sl@0: }; sl@0: sl@0: /** sl@0: Defines a column in a table or rowset. sl@0: sl@0: The data members are public because this is really a structure to group the sl@0: attributes of the column together. sl@0: sl@0: Three non-default constructors are provided for convenience. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class TDbCol sl@0: { sl@0: friend class CDbColSet; sl@0: public: sl@0: enum {ENotNull=0x01,EAutoIncrement=0x02}; sl@0: public: sl@0: /** Constructs an uninitialised TDbCol. It is necessary because there are sl@0: also non-default constructors in this class. */ sl@0: inline TDbCol() {} sl@0: inline TDbCol(const TDbCol&); sl@0: inline TDbCol& operator=(const TDbCol&); sl@0: IMPORT_C TDbCol(const TDesC& aName,TDbColType aType); sl@0: IMPORT_C TDbCol(const TDesC& aName,TDbColType aType,TInt aMaxLength); sl@0: static inline TBool IsLong(TDbColType aType); sl@0: private: sl@0: inline TDbCol(const TDesC& aName); sl@0: public: sl@0: /** The column type. */ sl@0: TDbColType iType; sl@0: /** The maximum length of data that can be stored in a Text or Binary sl@0: column. */ sl@0: TInt iMaxLength; sl@0: /** A set of flags describing other column attributes. This must be one sl@0: of the anonymous enum values ENotNull or EAutoIncrement. */ sl@0: TUint iAttributes; sl@0: /** The column name. */ sl@0: TDbColNameC iName; sl@0: }; sl@0: sl@0: /** Manages a set of column definitions which describe a table or rowset sl@0: structure. Column definitions can be added and removed. The set can be sl@0: iterated over, and ordinals for a column can be looked up. sl@0: sl@0: The class is not intended for user derivation. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class CDbColSet : public CBase sl@0: { sl@0: friend class TDbColSetIter; sl@0: public: sl@0: IMPORT_C CDbColSet(); sl@0: IMPORT_C static CDbColSet* NewL(); sl@0: IMPORT_C static CDbColSet* NewLC(); sl@0: IMPORT_C ~CDbColSet(); sl@0: inline const TDbCol& operator[](TDbColNo aCol) const; sl@0: IMPORT_C const TDbCol* Col(const TDesC& aColName) const; sl@0: IMPORT_C TDbColNo ColNo(const TDesC& aColName) const; sl@0: inline TInt Count() const; sl@0: inline void Clear(); sl@0: IMPORT_C CDbColSet& AddL(const TDbCol& aCol); sl@0: IMPORT_C void Remove(const TDesC& aColName); sl@0: private: sl@0: CArrayPakFlat iColumns; sl@0: }; sl@0: sl@0: /** sl@0: Provides a useful way to iterate over the contents of a column set. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class TDbColSetIter sl@0: { sl@0: public: sl@0: IMPORT_C TDbColSetIter(const CDbColSet& aColSet); sl@0: inline operator TAny* () const; sl@0: inline const TDbCol& operator*() const; sl@0: inline const TDbCol* operator->() const; sl@0: IMPORT_C TDbColSetIter& operator++(); sl@0: inline TDbColSetIter operator++(TInt); sl@0: inline TDbColNo Col() const; sl@0: private: sl@0: const TDbCol* iColumn; sl@0: TInt iIndex; sl@0: const CArrayPakFlat* iArray; sl@0: }; sl@0: sl@0: /** Defines a key column in an index. sl@0: sl@0: The data members are public as this is really a structure to group the sl@0: attributes of the key column together. Two non-default constructors are sl@0: provided for convenience. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class TDbKeyCol sl@0: { sl@0: public: sl@0: /** Specifies whether a key column in an index should be sorted in sl@0: ascending or descending order. */ sl@0: enum TOrder sl@0: { sl@0: /** Use ascending order. */ sl@0: EAsc, sl@0: /** Use descending order. */ sl@0: EDesc sl@0: }; sl@0: public: sl@0: /** Constructs an uninitialised object. Default constructor. It is necessary sl@0: because there are also non-default constructors in this class. */ sl@0: inline TDbKeyCol() {} sl@0: inline TDbKeyCol(const TDbKeyCol&); sl@0: inline TDbKeyCol& operator=(const TDbKeyCol&); sl@0: IMPORT_C TDbKeyCol(const TDesC& aName,TOrder anOrder=EAsc); sl@0: IMPORT_C TDbKeyCol(const TDesC& aName,TInt aLength,TOrder anOrder=EAsc); sl@0: public: sl@0: /** The maximum number of characters used to index Text or LongText sl@0: columns. If equal to KDbUndefinedLength (the default), all the characters sl@0: in the defined column will be used. */ sl@0: TOrder iOrder; sl@0: /** The ordering of the key. */ sl@0: TInt iLength; sl@0: /** The column name for the key. */ sl@0: TDbColNameC iName; sl@0: }; sl@0: sl@0: /** sl@0: Represents the definition of an index. The key may be unique or primary, it sl@0: can specify the sort of comparison which is made for Text columns, and it sl@0: has a list of columns which make up the key. The class is used to construct sl@0: and interrogate index keys. sl@0: sl@0: This class is not intended for user derivation. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class CDbKey : public CBase sl@0: { sl@0: public: sl@0: enum {EUnique=0x01,EPrimary=0x02}; sl@0: public: sl@0: IMPORT_C CDbKey(); sl@0: IMPORT_C static CDbKey* NewL(); sl@0: IMPORT_C static CDbKey* NewLC(); sl@0: IMPORT_C ~CDbKey(); sl@0: IMPORT_C CDbKey& AddL(const TDbKeyCol& aKeyCol); sl@0: IMPORT_C void Remove(const TDesC& aColName); sl@0: IMPORT_C void Clear(); sl@0: inline TInt Count() const; sl@0: inline const TDbKeyCol& operator[](TInt aCol) const; sl@0: inline void MakeUnique(); sl@0: inline TBool IsUnique() const; sl@0: inline void SetComparison(TDbTextComparison aComparison); sl@0: inline TDbTextComparison Comparison() const; sl@0: inline void MakePrimary(); sl@0: inline TBool IsPrimary() const; sl@0: private: sl@0: CArrayPakFlat iKeys; sl@0: TDbTextComparison iComparison; sl@0: TInt iAttributes; sl@0: }; sl@0: sl@0: /** sl@0: Saves the current location of a rowset, enabling rapid navigation back to a sl@0: previously visited row or position in the set. sl@0: sl@0: Instances of this class are returned by RDbRowSet::Bookmark(), which can later sl@0: be passed to RDbRowSet::GotoL() to return to the row which was current at sl@0: the call to Bookmark(). sl@0: sl@0: @see RDbRowSet::Bookmark() sl@0: @see RDbRowSet::GotoL() sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class TDbBookmark sl@0: { sl@0: friend class RDbRowSet; sl@0: public: sl@0: struct TMark sl@0: /** Stores a database bookmark. */ sl@0: { sl@0: enum {ESize=8}; sl@0: TUint32 iMark[ESize]; sl@0: }; sl@0: private: sl@0: TMark iMark; sl@0: }; sl@0: sl@0: /** sl@0: A wrapper for an SQL string combined with a text comparison mode. sl@0: sl@0: An instance of the class is used as a parameter to RDbView::Prepare(), sl@0: RDbRowSet::FindL() and RDbRowConstraint::Open(). sl@0: sl@0: The evaluation of SQL queries or constraints depends on how Text columns are sl@0: compared so every SQL string is accompanied by a member of the TDbTextComparison sl@0: enumeration to indicate how comparison is done. sl@0: sl@0: If the SQL string contains a LIKE clause with * (asterisks) wildcard then the sl@0: characters between them must be no longer than length 255. sl@0: If only one * exists then the length is taken from the start and to the end of sl@0: the clause. However, if the clause contains a ? (question mark) wildcard sl@0: within it then the characters between must be no longer than length 253. sl@0: sl@0: @see TDbTextComparison sl@0: @see RDbView::Prepare() sl@0: @see RDbRowSet::FindL() sl@0: @see RDbRowConstraint::Open() sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class TDbQuery sl@0: { sl@0: public: sl@0: inline TDbQuery(const TDesC& aQuery,TDbTextComparison aComparison=EDbCompareNormal); sl@0: inline const TDesC& Query() const; sl@0: inline TDbTextComparison Comparison() const; sl@0: private: sl@0: const TDesC& iQuery; sl@0: TDbTextComparison iComparison; sl@0: }; sl@0: sl@0: /** sl@0: This class is internal and is not intended for use sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class RDbHandleBase sl@0: { sl@0: public: sl@0: inline RDbHandleBase(); sl@0: void Close(); sl@0: protected: sl@0: inline void Set(CDbObject* aObject); sl@0: CDbObject& Object() const; sl@0: protected: sl@0: CDbObject* iObject; sl@0: }; sl@0: sl@0: /** sl@0: This class is internal and is not intended for use. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: template sl@0: class RDbHandle : public RDbHandleBase sl@0: { sl@0: public: sl@0: inline T* operator=(T* aT); sl@0: inline T* operator->() const; sl@0: inline T& operator*() const; sl@0: inline T* operator()() const; sl@0: }; sl@0: sl@0: /** sl@0: Represents a pre-compiled SQL search-condition, which can be used to sl@0: test against the current row in a rowset. sl@0: sl@0: The constraint is compiled against a specific rowset, and can only be matched sl@0: against the same rowset using the RDbRowSet::MatchL() function. sl@0: sl@0: @see RDbRowSet sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class RDbRowConstraint sl@0: { sl@0: friend class RDbRowSet; sl@0: public: sl@0: IMPORT_C TInt Open(const RDbRowSet& aView,TDbQuery aCriteria); sl@0: IMPORT_C void Close(); sl@0: private: sl@0: RDbHandle iConstraint; sl@0: }; sl@0: sl@0: /** sl@0: An abstract base class that provides functionality which is shared between sl@0: SQL view objects and Table objects. This functionality includes most of the sl@0: cursor navigation, row retrieval and update behaviour of rowsets. sl@0: sl@0: Rowset objects do not provide the data for the rowset on which they operate. sl@0: It is the responsibility of the derived classes RDbView and RDbTable to specify sl@0: the data source. sl@0: sl@0: This class is not intended for user derivation. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class RDbRowSet sl@0: { sl@0: friend class RDbRowConstraint; sl@0: friend class RDbColReadStream; sl@0: friend class RDbColWriteStream; sl@0: public: sl@0: /** Specifies where the rowset should navigate to in the GotoL() function. sl@0: Their use is encapsulated by the respective member functions FirstL(), sl@0: NextL() etc. */ sl@0: enum TPosition sl@0: { sl@0: /** Move to the first row in the rowset. */ sl@0: EFirst, sl@0: /** Move to the next row in the rowset. */ sl@0: ENext, sl@0: /** Move to the previous row in the rowset. */ sl@0: EPrevious, sl@0: /** Move to the last row in the rowset. */ sl@0: ELast, sl@0: /** Move to the position before the first row in the rowset. */ sl@0: EBeginning, sl@0: /** Move to the position after the last row in the rowset. */ sl@0: EEnd sl@0: }; sl@0: sl@0: /** Specifies which operations can be performed on a rowset. */ sl@0: enum TAccess sl@0: { sl@0: /** All operations can be performed on the rowset. */ sl@0: EUpdatable, sl@0: /** Row navigation and reading are permitted. */ sl@0: EReadOnly, sl@0: /** Inserting new rows is the only valid operation on the rowset. */ sl@0: EInsertOnly sl@0: }; sl@0: sl@0: /** Specifies the direction to search through the rowset when using the sl@0: FindL() function. */ sl@0: enum TDirection sl@0: { sl@0: /** Search from the current row forwards through the set. */ sl@0: EForwards, sl@0: /** Search from the current row backwards through the set. */ sl@0: EBackwards sl@0: }; sl@0: sl@0: /** Specifies whether the CountL() function should ensure that it returns sl@0: the exact value which may be a non-trivial task. */ sl@0: enum TAccuracy sl@0: { sl@0: /** Take the time, if necessary, to return the exact value. */ sl@0: EEnsure, sl@0: /** Return any immediately available value. */ sl@0: EQuick sl@0: }; sl@0: public: sl@0: IMPORT_C void Close(); sl@0: IMPORT_C void Reset(); sl@0: // sl@0: IMPORT_C CDbColSet* ColSetL() const; sl@0: IMPORT_C TInt ColCount() const; sl@0: IMPORT_C TDbColType ColType(TDbColNo aCol) const; sl@0: IMPORT_C TDbCol ColDef(TDbColNo aCol) const; sl@0: // sl@0: IMPORT_C TBool AtRow() const; sl@0: IMPORT_C TBool AtBeginning() const; sl@0: IMPORT_C TBool AtEnd() const; sl@0: // sl@0: IMPORT_C TInt CountL(TAccuracy anAccuracy=EEnsure) const; sl@0: IMPORT_C TBool IsEmptyL() const; sl@0: // sl@0: IMPORT_C TBool GotoL(TPosition aPosition); sl@0: inline void BeginningL(); sl@0: inline void EndL(); sl@0: inline TBool FirstL(); sl@0: inline TBool LastL(); sl@0: inline TBool NextL(); sl@0: inline TBool PreviousL(); sl@0: // sl@0: IMPORT_C TDbBookmark Bookmark() const; sl@0: IMPORT_C void GotoL(const TDbBookmark& aMark); sl@0: // sl@0: IMPORT_C TBool MatchL(const RDbRowConstraint& aConstraint); sl@0: IMPORT_C TInt FindL(TDirection aDirection,TDbQuery aCriteria); sl@0: // sl@0: IMPORT_C void GetL(); sl@0: IMPORT_C void InsertL(); sl@0: IMPORT_C void InsertCopyL(); sl@0: IMPORT_C void UpdateL(); sl@0: IMPORT_C void PutL(); sl@0: IMPORT_C void Cancel(); sl@0: IMPORT_C void DeleteL(); sl@0: // sl@0: inline TBool IsColNull(TDbColNo aCol) const; sl@0: IMPORT_C TInt ColSize(TDbColNo aCol) const; sl@0: IMPORT_C TInt ColLength(TDbColNo aCol) const; sl@0: // sl@0: IMPORT_C TInt8 ColInt8(TDbColNo aCol) const; sl@0: IMPORT_C TInt16 ColInt16(TDbColNo aCol) const; sl@0: IMPORT_C TInt32 ColInt32(TDbColNo aCol) const; sl@0: IMPORT_C TInt64 ColInt64(TDbColNo aCol) const; sl@0: inline TInt ColInt(TDbColNo aCol) const; sl@0: IMPORT_C TUint8 ColUint8(TDbColNo aCol) const; sl@0: IMPORT_C TUint16 ColUint16(TDbColNo aCol) const; sl@0: IMPORT_C TUint32 ColUint32(TDbColNo aCol) const; sl@0: inline TUint ColUint(TDbColNo aCol) const; sl@0: IMPORT_C TReal32 ColReal32(TDbColNo aCol) const __SOFTFP; sl@0: IMPORT_C TReal64 ColReal64(TDbColNo aCol) const __SOFTFP; sl@0: inline TReal ColReal(TDbColNo aCol) const; sl@0: IMPORT_C TTime ColTime(TDbColNo aCol) const; sl@0: IMPORT_C TPtrC8 ColDes8(TDbColNo aCol) const; sl@0: IMPORT_C TPtrC16 ColDes16(TDbColNo aCol) const; sl@0: IMPORT_C TPtrC ColDes(TDbColNo aCol) const; sl@0: // sl@0: IMPORT_C void SetColNullL(TDbColNo aCol); sl@0: inline void SetColL(TDbColNo aCol,TInt aValue); sl@0: IMPORT_C void SetColL(TDbColNo aCol,TInt32 aValue); sl@0: IMPORT_C void SetColL(TDbColNo aCol,TInt64 aValue); sl@0: inline void SetColL(TDbColNo aCol,TUint aValue); sl@0: IMPORT_C void SetColL(TDbColNo aCol,TUint32 aValue); sl@0: IMPORT_C void SetColL(TDbColNo aCol,TReal32 aValue) __SOFTFP; sl@0: IMPORT_C void SetColL(TDbColNo aCol,TReal64 aValue) __SOFTFP; sl@0: IMPORT_C void SetColL(TDbColNo aCol,TTime aValue); sl@0: IMPORT_C void SetColL(TDbColNo aCol,const TDesC8& aValue); sl@0: IMPORT_C void SetColL(TDbColNo aCol,const TDesC16& aValue); sl@0: private: sl@0: inline MStreamBuf* ColSourceL(TDbColNo aCol) const; sl@0: inline MStreamBuf* ColSinkL(TDbColNo aCol); sl@0: CDbCursor& CheckCol(TDbColNo aCol) const; sl@0: TDbColumnC ColumnC(TDbColNo aCol,TDbColType aType) const; sl@0: TDbColumn Column(TDbColNo aCol,TDbColType aType); sl@0: protected: sl@0: RDbHandle iCursor; sl@0: }; sl@0: sl@0: /** sl@0: Allows any column value to be read as stream data. sl@0: sl@0: Note that this is the only way to extract the contents of a Long column from sl@0: a rowset. sl@0: sl@0: Only one column in a rowset object can be opened for reading as a stream at sl@0: a time, and while it is open no column in the same rowset object may be set sl@0: using RDbColWriteStream. sl@0: sl@0: Null columns result in a read stream with no data. Small numeric columns are sl@0: maintained in memory as 32-bit values; hence reading a Uint8 column as a stream sl@0: results in 4 bytes of stream data, not 1. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class RDbColReadStream : public RReadStream sl@0: { sl@0: public: sl@0: IMPORT_C void OpenL(const RDbRowSet& aView,TDbColNo aCol); sl@0: IMPORT_C void OpenLC(const RDbRowSet& aView,TDbColNo aCol); sl@0: }; sl@0: sl@0: /** sl@0: Writes Long columns when inserting or updating rows in a rowset. sl@0: sl@0: Only one column in a rowset object can be opened for writing as a stream at sl@0: a time. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class RDbColWriteStream : public RWriteStream sl@0: { sl@0: public: sl@0: /** Constructs this object by invoking the default constructor for sl@0: RWriteStream. */ sl@0: inline RDbColWriteStream() {} sl@0: inline RDbColWriteStream(const MExternalizer &anExternalizer); sl@0: IMPORT_C void OpenL(RDbRowSet& aView,TDbColNo aCol); sl@0: IMPORT_C void OpenLC(RDbRowSet& aView,TDbColNo aCol); sl@0: }; sl@0: sl@0: /** sl@0: Describes the desired shape of a view's pre-evaluation window. sl@0: sl@0: An instance of this class is passed to the RDbView object as part of the sl@0: Prepare() function. The different constructors for TDbWindow can specify a view: sl@0: sl@0: without pre-evaluation sl@0: sl@0: with full pre-evaluation sl@0: sl@0: with limited pre-evaluation. sl@0: sl@0: @see RDbView sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class TDbWindow sl@0: { sl@0: public: sl@0: /** Denotes a full pre-evaluation window. */ sl@0: enum TUnlimited sl@0: { sl@0: /** No limit on how many rows may be in the window. */ sl@0: EUnlimited=KMaxTInt sl@0: }; sl@0: enum {ENone=0}; sl@0: public: sl@0: inline TDbWindow(); sl@0: inline TDbWindow(TUnlimited); sl@0: IMPORT_C TDbWindow(TInt aForeSlots,TInt aRearSlots); sl@0: inline TInt Size() const; sl@0: inline TInt PreferredPos() const; sl@0: private: sl@0: TInt iSize; sl@0: TInt iPreferredPos; sl@0: }; sl@0: #if defined(__NO_CLASS_CONSTS__) sl@0: /** sl@0: @publishedAll sl@0: */ sl@0: #define KDbUnlimitedWindow TDbWindow(TDbWindow::EUnlimited) sl@0: #else sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: const TDbWindow KDbUnlimitedWindow=TDbWindow(TDbWindow::EUnlimited); sl@0: #endif sl@0: sl@0: /** sl@0: Generates rowsets from an SQL query. The query is prepared and evaluated sl@0: using the interface to this class, while the rowset is manipulated using the sl@0: RDbRowset base class. sl@0: sl@0: There are no special rules to consider when deriving from this class. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class RDbView : public RDbRowSet sl@0: { sl@0: public: sl@0: IMPORT_C TInt Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,TAccess anAccess=EUpdatable); sl@0: IMPORT_C TInt Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,const TDbWindow& aWindow); sl@0: IMPORT_C TInt Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,const TDbWindow& aWindow,TAccess anAccess); sl@0: IMPORT_C TInt EvaluateAll(); sl@0: IMPORT_C TInt Evaluate(); sl@0: // IMPORT_C void Evaluate(TRequestStatus& aStatus); sl@0: IMPORT_C TBool Unevaluated() const; sl@0: }; sl@0: sl@0: /** sl@0: This class is internal and is not intended for use. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: template sl@0: class TUnion sl@0: { sl@0: public: sl@0: inline operator const T&() const; sl@0: inline const T& operator()() const; sl@0: inline T& operator()(); sl@0: inline void Set(const T& aT); sl@0: private: sl@0: TUint8 iRep[sizeof(T)]; sl@0: }; sl@0: sl@0: /** sl@0: This class is internal and is not intended for use. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class TDbLookupKey sl@0: { sl@0: public: sl@0: struct SColumn sl@0: { sl@0: union sl@0: { sl@0: TInt32 iInt32; sl@0: TUint32 iUint32; sl@0: TUnion iInt64; sl@0: TReal32 iReal32; sl@0: TReal64 iReal64; sl@0: TUnion iTime; sl@0: struct {const TText8* iPtr;TInt iLength;} iDes8; sl@0: struct {const TText16* iPtr;TInt iLength;} iDes16; sl@0: }; sl@0: TDbColType iType; sl@0: }; sl@0: public: sl@0: inline TDbLookupKey(); sl@0: inline TInt Count() const; sl@0: inline const SColumn* First() const; sl@0: void Add(TInt aKey); sl@0: void Add(TUint aKey); sl@0: void Add(TInt64 aKey); sl@0: void Add(TReal32 aKey) __SOFTFP; sl@0: void Add(TReal64 aKey) __SOFTFP; sl@0: void Add(TTime aKey); sl@0: void Add(const TDesC8& aKey); sl@0: void Add(const TDesC16& aKey); sl@0: private: sl@0: SColumn& NextKey(); sl@0: private: sl@0: TInt iCount; sl@0: SColumn iKey[1]; // at least one sl@0: }; sl@0: sl@0: /** sl@0: Database key value. sl@0: sl@0: The class encapsulates a key value which is passed to RDbTable::SeekL(), for sl@0: lookup in the currently active index on that rowset. sl@0: sl@0: An instance of this class can store a key value of any type. sl@0: sl@0: Note that the class can only hold a single-column key. Use TDbSeekMultiKey sl@0: for multi-column keys. sl@0: sl@0: @see TDbSeekMultiKey sl@0: @see RDbTable sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class TDbSeekKey sl@0: { sl@0: friend class RDbTable; sl@0: public: sl@0: inline TDbSeekKey(); sl@0: inline TDbSeekKey(TInt aKey); sl@0: inline TDbSeekKey(TUint aKey); sl@0: inline TDbSeekKey(TInt64 aKey); sl@0: inline TDbSeekKey(TReal32 aKey); sl@0: inline TDbSeekKey(TReal64 aKey); sl@0: inline TDbSeekKey(TTime aKey); sl@0: inline TDbSeekKey(const TDesC8& aKey); sl@0: inline TDbSeekKey(const TDesC16& aKey); sl@0: IMPORT_C TDbSeekKey& Add(TInt aKey); sl@0: IMPORT_C TDbSeekKey& Add(TUint aKey); sl@0: IMPORT_C TDbSeekKey& Add(TInt64 aKey); sl@0: IMPORT_C TDbSeekKey& Add(TReal32 aKey) __SOFTFP; sl@0: IMPORT_C TDbSeekKey& Add(TReal64 aKey) __SOFTFP; sl@0: IMPORT_C TDbSeekKey& Add(TTime aKey); sl@0: IMPORT_C TDbSeekKey& Add(const TDesC8& aKey); sl@0: IMPORT_C TDbSeekKey& Add(const TDesC16& aKey); sl@0: private: sl@0: TDbLookupKey& Check(); sl@0: protected: sl@0: inline TDbSeekKey(TInt aKeys,TInt); sl@0: private: sl@0: TInt iMaxKeys; sl@0: TDbLookupKey iKey; sl@0: }; sl@0: sl@0: /** sl@0: Database multi-column key value. sl@0: sl@0: The class extends the behaviour of TDbSeekKey by allowing multi-column indexes sl@0: to be searched using multi-column key values. sl@0: sl@0: The template parameter S specifies the maximum number of column values that sl@0: can be added to the key value. sl@0: sl@0: Use the TDbSeekKey::Add() members to append the values for each column in sl@0: the key value. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: template sl@0: class TDbSeekMultiKey : public TDbSeekKey sl@0: { sl@0: public: sl@0: inline TDbSeekMultiKey(); sl@0: private: sl@0: TDbLookupKey::SColumn iExtraKeys[S-1]; sl@0: }; sl@0: sl@0: /** sl@0: Provides access to table data as a rowset, allowing manipulation of a named sl@0: table in the database. Additionally, a named index can be used to order the sl@0: rowset, and to provide fast key-based row retrieval from the table. sl@0: sl@0: There are no special rules to consider when deriving from this class. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class RDbTable : public RDbRowSet sl@0: { sl@0: public: sl@0: /** Database table seek comparison types. */ sl@0: enum TComparison sl@0: { sl@0: /** Retrieve the last row which is strictly less than the key value. */ sl@0: ELessThan, sl@0: /** Retrieve the last row which is equal to or less than the key sl@0: value. */ sl@0: ELessEqual, sl@0: /** Retrieve the first row which is equal to the key value. */ sl@0: EEqualTo, sl@0: /** Retrieve the first row which is equal to or greater than the key sl@0: value. */ sl@0: EGreaterEqual, sl@0: /** Retrieve the first row which is strictly greater than the key sl@0: value. */ sl@0: EGreaterThan sl@0: }; sl@0: public: sl@0: IMPORT_C TInt Open(RDbDatabase& aDatabase,const TDesC& aName,TAccess anAccess=EUpdatable); sl@0: inline TInt SetIndex(const TDesC& anIndex); sl@0: inline TInt SetNoIndex(); sl@0: IMPORT_C TBool SeekL(const TDbSeekKey& aKey,TComparison aComparison=EEqualTo); sl@0: private: sl@0: IMPORT_C TInt SetIndex(const TDesC* anIndex); sl@0: }; sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class CDbNames : public CBase sl@0: { sl@0: private: sl@0: inline CDbNames(); sl@0: public: sl@0: static CDbNames* NewLC(); sl@0: ~CDbNames(); sl@0: inline TInt Count() const; sl@0: inline const TDesC& operator[](TInt anIndex) const; sl@0: IMPORT_C void AddL(const TDesC& aName); sl@0: private: sl@0: CArrayPakFlat iList; sl@0: }; sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: typedef CDbNames CDbTableNames,CDbIndexNames,CDbDatabaseNames; sl@0: sl@0: /** sl@0: The maximum length for a generic DBMS string, which might be transferred from DBMS server sl@0: to the DBMS client using IPC. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: const TInt KDbMaxStrLen = 256; sl@0: sl@0: /** sl@0: Represents a generic read-only DBMS string. It maps to a non-modifiable buffer descriptor sl@0: with maximum size KDbMaxStrLen. sl@0: sl@0: @see TBufC sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: typedef TBufC TDbStringC; sl@0: sl@0: /** sl@0: CDbStrings encapsulates functionality used for transferring an array of strings from sl@0: DBMS server to the DBMS client. The maximal length of each element of the array is sl@0: KDbMaxStrLen characters. sl@0: The typical usage pattern of CDbStrings class is: sl@0: @code sl@0: CDbStrings* strings = ; sl@0: TInt cnt = strings.Count(); sl@0: for(TInt i=0;i; sl@0: } sl@0: delete strings; sl@0: @endcode sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class CDbStrings : public CBase sl@0: { sl@0: private: sl@0: inline CDbStrings(); sl@0: public: sl@0: static CDbStrings* NewLC(); sl@0: virtual ~CDbStrings(); sl@0: inline TInt Count() const; sl@0: inline const TDesC& operator[](TInt aIndex) const; sl@0: void AddL(const TDesC& aStr); sl@0: private: sl@0: CArrayPakFlat iList; sl@0: }; sl@0: sl@0: /** sl@0: Abstract class providing the functionality of a database. sl@0: sl@0: The source of the database and the implementation characteristics of a particular sl@0: database are provided by a class derived from RDbDatabase. sl@0: sl@0: DBMS has one such implementation: the store database. sl@0: sl@0: This class is not intended for user derivation. sl@0: sl@0: Note: For functions (i.e. Execute) that take an Sql string, if the string sl@0: contains a LIKE clause with * (asterisks) wildcard then the sl@0: characters between them must be no longer than length 255. sl@0: If only one * exists then the length is taken from the start and to the end of sl@0: the clause. However, if the clause contains a ? (question mark) wildcard sl@0: within it then the characters between must be no longer than length 253. sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class RDbDatabase sl@0: { sl@0: friend class RDbView; sl@0: friend class RDbTable; sl@0: friend class RDbIncremental; sl@0: friend class RDbUpdate; sl@0: friend class RDbNotifier; sl@0: public: sl@0: struct TSize {TInt iSize;TInt iUsage;}; sl@0: public: sl@0: IMPORT_C void Close(); sl@0: IMPORT_C TInt Destroy(); sl@0: // sl@0: IMPORT_C TBool IsDamaged() const; sl@0: IMPORT_C TInt Recover(); sl@0: // sl@0: IMPORT_C TInt UpdateStats(); sl@0: IMPORT_C TSize Size() const; sl@0: IMPORT_C TInt Compact(); sl@0: IMPORT_C TInt Begin(); sl@0: IMPORT_C TInt Commit(); sl@0: IMPORT_C void Rollback(); sl@0: IMPORT_C TBool InTransaction() const; sl@0: // sl@0: inline TInt CreateTable(const TDesC& aName,const CDbColSet& aDef); sl@0: inline TInt CreateTable(const TDesC& aName,const CDbColSet& aDef,const CDbKey& aPrimaryKey); sl@0: IMPORT_C TInt DropTable(const TDesC& aName); sl@0: IMPORT_C TInt AlterTable(const TDesC& aName,const CDbColSet& aNewDef); sl@0: IMPORT_C TInt CreateIndex(const TDesC& aName,const TDesC& aTable,const CDbKey& aKey); sl@0: IMPORT_C TInt DropIndex(const TDesC& aName,const TDesC& aTable); sl@0: // sl@0: IMPORT_C TInt Execute(const TDesC& aSql,TDbTextComparison aComparison=EDbCompareNormal); sl@0: // sl@0: IMPORT_C CDbTableNames* TableNamesL() const; sl@0: IMPORT_C CDbColSet* ColSetL(const TDesC& aName) const; sl@0: IMPORT_C CDbIndexNames* IndexNamesL(const TDesC& aTable) const; sl@0: IMPORT_C CDbKey* KeyL(const TDesC& aName,const TDesC& aTable) const; sl@0: private: sl@0: IMPORT_C TInt CreateTable(const TDesC& aName,const CDbColSet& aColSet,const CDbKey* aPrimaryKey); sl@0: protected: sl@0: RDbHandle iDatabase; sl@0: }; sl@0: sl@0: /** sl@0: Provides the interface for performing long-running database operations in sl@0: incremental steps, allowing application programs to remain responsive to other sl@0: events. sl@0: sl@0: After an operation has begun, a standard interface is used to continue and sl@0: complete all incremental operations. On successful return from one of the sl@0: initiating functions, a step value is also returned. This gives the progress sl@0: indication and is, initially, positive. This value should be passed into sl@0: subsequent steps in the operation, each of which may decrement the value by sl@0: some amount, although they are allowed to leave it unchanged. The value sl@0: reaches zero, if, and only if the operation completes. sl@0: sl@0: While an incremental operation is in progress, the database cannot be used sl@0: for any other operations such as opening tables or preparing views. sl@0: sl@0: Starting an incremental operation also requires that no rowsets are open on sl@0: the database and that no commit is pending for data manipulation transactions. sl@0: sl@0: If no explicit transaction has been started by the database, then an automatic sl@0: transaction is begun when any incremental operation is started and is committed sl@0: when complete or rolled back if the operation either fails or is abandoned sl@0: prior to completion. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class RDbIncremental sl@0: { sl@0: public: sl@0: IMPORT_C void Close(); sl@0: IMPORT_C TInt Next(TInt& aStep); sl@0: // IMPORT_C void Next(TPckgBuf& aStep,TRequestStatus& aStatus); sl@0: // sl@0: IMPORT_C TInt Recover(RDbDatabase& aDatabase,TInt& aStep); sl@0: IMPORT_C TInt Compact(RDbDatabase& aDatabase,TInt& aStep); sl@0: IMPORT_C TInt DropTable(RDbDatabase& aDatabase,const TDesC& aTable,TInt& aStep); sl@0: IMPORT_C TInt AlterTable(RDbDatabase& aDatabase,const TDesC& aTable,const CDbColSet& aNewDef,TInt& aStep); sl@0: IMPORT_C TInt CreateIndex(RDbDatabase& aDatabase,const TDesC& aName,const TDesC& aTable,const CDbKey& aKey,TInt& aStep); sl@0: IMPORT_C TInt DropIndex(RDbDatabase& aDatabase,const TDesC& aName,const TDesC& aTable,TInt& aStep); sl@0: inline TInt Execute(RDbDatabase& aDatabase,const TDesC& aSql,TInt& aStep); sl@0: IMPORT_C TInt Execute(RDbDatabase& aDatabase,const TDesC& aSql,TDbTextComparison aComparison,TInt& aStep); sl@0: IMPORT_C TInt UpdateStats(RDbDatabase& aDatabase,TInt& aStep); sl@0: private: sl@0: RDbHandle iState; sl@0: }; sl@0: sl@0: /** sl@0: Provides an interface to allow incremental execution of a DML (SQL data sl@0: update) statement. sl@0: sl@0: This class offers similar behaviour to the RDbIncremental class, in that it sl@0: allows an application to perform long running operations while remaining sl@0: responsive to events. However, unlike that class, RDbUpdate is restricted to sl@0: executing DML statements. sl@0: sl@0: @see RDbIncremental sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class RDbUpdate sl@0: { sl@0: public: sl@0: IMPORT_C TInt Execute(RDbDatabase& aDatabase,const TDesC& aSql,TDbTextComparison aComparison=EDbCompareNormal); sl@0: IMPORT_C void Close(); sl@0: // sl@0: IMPORT_C TInt Next(); sl@0: // IMPORT_C void Next(TRequestStatus& aStatus); sl@0: IMPORT_C TInt RowCount() const; sl@0: private: sl@0: RDbHandle iUpdate; sl@0: TPckgBuf iRows; sl@0: }; sl@0: sl@0: /** sl@0: Provides notification of database changes to clients. sl@0: sl@0: This is useful for shared databases. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class RDbNotifier sl@0: { sl@0: public: sl@0: /** Defines the events which may be reported by a DBMS change notifier sl@0: through this RDbNotifier object. sl@0: sl@0: Each enumerator corresponds to a distinct event type. sl@0: sl@0: The changes are reported through a TRequestStatus object when an sl@0: outstanding notification request completes. sl@0: sl@0: Notes sl@0: sl@0: If further database events occur while a client is handling the completion sl@0: of a previous event, the notifier remembers the most significant event. The sl@0: order of importance is: sl@0: sl@0: ERecover > ERollback > ECommit sl@0: sl@0: where the symbol > means "is more important than" */ sl@0: enum TEvent sl@0: { sl@0: /** The database has been closed. */ sl@0: EClose, sl@0: /** All read locks have been removed. */ sl@0: EUnlock, sl@0: /** A transaction has been committed. */ sl@0: ECommit, sl@0: /** A transaction has been rolled back */ sl@0: ERollback, sl@0: /** The database has been recovered */ sl@0: ERecover sl@0: }; sl@0: public: sl@0: IMPORT_C TInt Open(RDbDatabase& aDatabase); sl@0: IMPORT_C void Close(); sl@0: // sl@0: // IMPORT_C void NotifyUnlock(TRequestStatus& aStatus); sl@0: // IMPORT_C void NotifyChange(TRequestStatus& aStatus); sl@0: IMPORT_C void Cancel(); sl@0: private: sl@0: RDbHandle iNotifier; sl@0: }; sl@0: sl@0: /** sl@0: Client-server databases sl@0: sl@0: Represents a session with the DBMS server. A thread uses this class to set sl@0: up a DBMS server session and this provides the basis for sharing databases sl@0: with other threads. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class RDbs //: public RSessionBase sl@0: { sl@0: public: sl@0: /** sl@0: This enum is used in GetDatabasePolicy/GetTablePolicy/GetTablePolicies calls and specifies sl@0: requested security policy type: read/write/schema. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: typedef enum {EReadPolicy, EWritePolicy, ESchemaPolicy} TPolicyType; sl@0: sl@0: public: sl@0: IMPORT_C void Close(); sl@0: // IMPORT_C static TVersion Version(); sl@0: IMPORT_C TInt Connect(); sl@0: IMPORT_C CDbDatabaseNames* DatabaseNamesL(TDriveNumber aDrive, TUid aPolicyUid); sl@0: IMPORT_C TInt CopyDatabase(const TDesC& aSrcDbName, const TDesC& aDestDbName, TUid aPolicyUid); sl@0: IMPORT_C TInt DeleteDatabase(const TDesC& aDbName, TUid aPolicyUid); sl@0: // IMPORT_C TInt GetDatabasePolicy(TUid aPolicyUid, TPolicyType aPolicyType, sl@0: // TSecurityPolicy& aDbPolicy); sl@0: // IMPORT_C TInt GetTablePolicy(TUid aPolicyUid, const TDesC& aTableName, sl@0: // TPolicyType aPolicyType, TSecurityPolicy& aTablePolicy); sl@0: // IMPORT_C TInt GetTablePolicies(TUid aPolicyUid, const TDesC& aTableName, sl@0: // TPolicyType aPolicyType, sl@0: // TSecurityPolicy& aDbPolicy, TSecurityPolicy& aTablePolicy); sl@0: // sl@0: IMPORT_C void ResourceMark(); sl@0: IMPORT_C void ResourceCheck(); sl@0: IMPORT_C TInt ResourceCount(); sl@0: IMPORT_C void SetHeapFailure(TInt aTAllocFail,TInt aRate); sl@0: sl@0: IMPORT_C TInt ReserveDriveSpace(TInt aDriveNo, TInt aSpace); sl@0: IMPORT_C void FreeReservedSpace(TInt aDriveNo); sl@0: IMPORT_C TInt GetReserveAccess(TInt aDriveNo); sl@0: IMPORT_C TInt ReleaseReserveAccess(TInt aDriveNo); sl@0: sl@0: // IMPORT_C TInt GetBackupPath(TSecureId aRequesterSid, const TDesC& aDbName, sl@0: // TUid aDbPolicyUid, TDes& aBackupPath); sl@0: // IMPORT_C CDbStrings* BackupPathsL(TSecureId aRequesterSid, TUid aDbPolicyUid); sl@0: sl@0: private: sl@0: TInt DoConnect(); sl@0: TInt SessionMessage(TInt aFunction); sl@0: // TInt GetPolicy(TUid aPolicyUid, const TDesC& aTableName, sl@0: // TUint aMask, TSecurityPolicy& aPolicy); sl@0: }; sl@0: sl@0: /** sl@0: Generic database implementation sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class RDbNamedDatabase : public RDbDatabase sl@0: { sl@0: public: sl@0: /** Specifies which operations can be performed on a rowset. */ sl@0: enum TAccess sl@0: { sl@0: EReadWrite, sl@0: /** Row navigation and reading are permitted. */ sl@0: EReadOnly sl@0: }; sl@0: public: sl@0: IMPORT_C TInt Create(RDbs& aDbs, const TDesC& aDatabase, const TDesC& aFormat); sl@0: IMPORT_C TInt Create(RFs& aFs,const TDesC& aDatabase,const TDesC& aFormat=TPtrC()); sl@0: IMPORT_C TInt Replace(RFs& aFs,const TDesC& aDatabase,const TDesC& aFormat=TPtrC()); sl@0: IMPORT_C TInt Open(RFs& aFs,const TDesC& aDatabase,const TDesC& aFormat=TPtrC(),TAccess aMode=EReadWrite); sl@0: IMPORT_C TInt Open(RDbs& aDbs,const TDesC& aDatabase,const TDesC& aFormat=TPtrC()); sl@0: }; sl@0: sl@0: /** sl@0: DBMS Store database implementation sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class RDbStoreDatabase : public RDbDatabase sl@0: { sl@0: public: sl@0: IMPORT_C TStreamId CreateL(CStreamStore* aStore); sl@0: IMPORT_C void OpenL(CStreamStore* aStore,TStreamId anId); sl@0: IMPORT_C static void CompressL(CStreamStore& aStore,TStreamId aId); sl@0: IMPORT_C static void DecompressL(CStreamStore& aStore,TStreamId aId); sl@0: }; sl@0: sl@0: #include sl@0: #endif