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.
38 EDbRowSetConstraintMismatch,
39 EDbBeginNestedTransaction,
40 EDbUpdatesPendingOnCommit,
41 EDbUpdatesPendingOnRollback,
42 EDbNoCurrentTransaction,
43 EDbStreamsPendingOnCommit,
44 EDbStreamsPendingOnRollback,
51 GLREF_C void Panic( TTablePanic aPanic );
59 static void NameL( const TDesC& aName );
60 static void ColSetL( const CDbColSet& aColSet );
61 static void KeyL( const CDbKey& aKey, const HDbColumnSet& aColumns );
63 static void UniqueNameL( TDesC const** aNames, TInt aCount, const TDesC& aName );
66 class CDbDataSource : public CBase
72 enum TGoto { ESuccess, ENoRow, EExhausted, ESynchFailure };
73 enum TSynch { ESynch, ENoSynch };
74 enum TDelete { EDeletedAtNext, EDeletedAtEnd, EDeletedInLimbo };
75 enum TWrite { EReplace, EAppend };
77 enum { EWorkToIterate = 1, EWorkToRead = 16 };
79 virtual RDbRow* RowBuffer() = 0;
80 virtual TDbColumn Column( TDbColNo aColNo ) = 0;
81 virtual void Reset() = 0;
82 virtual TBool EvaluateL( TInt& aWork, TDbRecordId& aRecordId, TBool& aAtRow ) = 0;
83 virtual TBool Unevaluated() = 0;
84 virtual TInt CountL() = 0;
85 virtual TGoto GotoL( TInt& aWork, TDbPosition aPosition, TDbRecordId& aRecordId ) = 0;
86 TGoto GotoL( TDbPosition aPosition, TDbRecordId& aRecordId );
87 virtual TBool GotoL( TDbRecordId aRecordId ) = 0;
88 virtual void ReadRowL( TDbRecordId aRecordId ) = 0;
89 virtual void NewRowL( TDbRecordId aCopyRecord ) = 0;
90 virtual void PrepareToWriteRowL( TWrite aWrite ) = 0;
91 virtual TDbRecordId WriteRowL( TWrite aWrite, TSynch aSynch = ESynch ) = 0;
92 virtual TDelete DeleteRowL( TDbRecordId& aRecordId, TSynch aSynch = ESynch ) = 0;
93 virtual TInt ColumnCount() const = 0;
94 virtual const TDbColumnDef& ColumnDef( TDbColNo aCol ) const = 0;
96 virtual void SetIndexL( const TDesC* anIndex ) = 0;
97 virtual TBool SeekL( const TDbLookupKey& aKey, RDbTable::TComparison aComparison, TDbRecordId& aRecordId ) = 0;
98 virtual CSqlSearchCondition* ParseConstraintLC( const TDesC& aCondition ) = 0;
103 NONSHARABLE_CLASS(CDbTableSource) : public CDbDataSource
111 void Construct( CDbTable* aTable );
112 inline void SetIterator( CDbRecordIter* anIter );
113 void ReverseIteratorL();
114 inline const RDbTableRow& Row();
115 inline CDbTable& Table();
118 TDbColumn Column( TDbColNo aColNo );
120 TBool EvaluateL( TInt& aWork, TDbRecordId& aRecordId, TBool& aAtRow );
123 TGoto GotoL( TInt& aWork, TDbPosition aPosition, TDbRecordId& aRecordId );
124 TBool GotoL( TDbRecordId aRecordId );
125 void NewRowL( TDbRecordId aCopyRecord );
126 void PrepareToWriteRowL( TWrite aWrite );
127 TDbRecordId WriteRowL( TWrite aWrite, TSynch aSynch );
128 void ReadRowL( TDbRecordId aRecordId );
129 TDelete DeleteRowL( TDbRecordId& aRecordId, TSynch aSynch );
130 TInt ColumnCount() const;
131 const TDbColumnDef& ColumnDef( TDbColNo aCol ) const;
132 void SetIndexL( const TDesC* anIndex );
133 TBool SeekL( const TDbLookupKey& aKey, RDbTable::TComparison aComparison, TDbRecordId& aRecordId );
134 CSqlSearchCondition* ParseConstraintLC( const TDesC& aCondition );
136 TBool SynchL( TDbRecordId aRecordId );
137 void OpenIteratorL();
139 CDbRecordIter* iIter;
140 TDbGenerationMark iIterMark;
145 NONSHARABLE_CLASS(CDbDataStage) : public CDbDataSource
152 inline void SetSource( CDbDataSource* aSource );
155 inline CDbDataSource& Source();
156 inline const CDbDataSource& Source() const;
158 TDbColumn Column( TDbColNo aColNo );
160 TBool EvaluateL( TInt& aWork, TDbRecordId& aRecordId, TBool& aAtRow );
163 TGoto GotoL( TInt& aWork, TDbPosition aPosition, TDbRecordId& aRecordId );
164 TBool GotoL( TDbRecordId aRecordId );
165 void ReadRowL( TDbRecordId aRecordId );
166 void NewRowL( TDbRecordId aCopyRecord );
167 void PrepareToWriteRowL( TWrite aWrite );
168 TDbRecordId WriteRowL( TWrite aWrite, TSynch aSynch );
169 TDelete DeleteRowL( TDbRecordId& aRecordId, TSynch aSynch );
170 TInt ColumnCount() const;
171 const TDbColumnDef& ColumnDef( TDbColNo aCol ) const;
172 void SetIndexL( const TDesC* anIndex );
173 TBool SeekL( const TDbLookupKey& aKey, RDbTable::TComparison aComparison, TDbRecordId& aRecordId );
174 CSqlSearchCondition* ParseConstraintLC( const TDesC& aCondition );
176 CDbDataSource* iSource;
179 NONSHARABLE_CLASS(CDbRestrictStage) : public CDbDataStage
185 CDbRestrictStage( TDbTextComparison aComparison );
187 inline void SetRestriction( CSqlSearchCondition* aRestriction );
189 inline CSqlSearchCondition& Restriction() const;
190 TBool FilterRowL( TDbRecordId aRecordId );
193 TGoto GotoL( TInt& aWork, TDbPosition aPosition, TDbRecordId& aRecordId );
194 TBool GotoL( TDbRecordId aRecordId );
195 TDelete DeleteRowL( TDbRecordId& aRecordId, TSynch aSynch );
197 CSqlSearchCondition* iRestriction;
198 const TTextOps& iTextOp;
203 NONSHARABLE_CLASS(CDbProjectStage) : public CDbDataStage
205 implement restricted column selection
212 void ConstructL( const RSqlColumnList& aSelect, const HDbColumnSet& aColumns );
215 TDbColumn Column( TDbColNo aColNo );
216 TInt ColumnCount() const;
217 const TDbColumnDef& ColumnDef( TDbColNo aCol ) const;
222 NONSHARABLE_CLASS(CDbBasicWindowStage) : public CDbDataStage
228 enum { EWindowArrayGranularity = 32 }; // 128 byte segments
230 CDbBasicWindowStage( const TDbWindow& aWindow );
234 TBool EvaluateL( TInt& aWork, TDbRecordId& aRecordId, TBool& aAtRow );
236 TGoto GotoL( TInt& aWork, TDbPosition aPosition, TDbRecordId& aRecordId );
237 TBool GotoL( TDbRecordId aRecordId );
238 void ReadRowL( TDbRecordId aRecordId );
239 TDbRecordId WriteRowL( TWrite aWrite, TSynch aSynch );
240 TDelete DeleteRowL( TDbRecordId& aRecordId, TSynch aSynch );
242 TBool GetRecord( TDbRecordId& aRecordId );
243 TInt Find( TDbRecordId aRecordId, TInt& aPos );
244 virtual TBool DoEvaluateL( TInt& aWork ) = 0;
246 TDbWindow iWindow; // the window shape
247 CArrayFixSeg<TDbRecordId> iRecords; // the window itself
248 TInt iPos; // the iterator over the window
251 NONSHARABLE_CLASS(CDbWindowStage) : public CDbBasicWindowStage
257 enum TView { EBeginning, EMiddle, EEnd, EAll };
258 enum TIterPos { EAtBeginning, EAtEnd };
260 CDbWindowStage( const TDbWindow& aWindow );
263 TBool DoEvaluateL( TInt& aWork );
266 TInt WhatToEvaluate();
267 TDbPosition ResetIterToBeginningL();
268 TDbPosition ResetIterToEndL();
269 TDbPosition SetIteratorL( TInt anEval );
270 void ExtendAtBeginningL( TInt aRecords, TDbPosition aFirst, TInt& aWork );
271 void ExtendAtEndL( TInt aRecords, TDbPosition aFirst, TInt& aWork );
273 TIterPos iIterPos; // where the underlying iterator is in our window
274 TView iView; // what part of the underlying set we see through the window
277 NONSHARABLE_CLASS(CDbReorderWindowStage) : public CDbBasicWindowStage
283 enum TState { EReset, EEvaluate, EComplete, EFailed };
284 enum { EGranularity = 32 };
286 CDbReorderWindowStage();
287 ~CDbReorderWindowStage();
290 TBool DoEvaluateL( TInt& aWork );
293 TBool ReadL( TInt& aWork, TDbPosition aNext );
299 NONSHARABLE_CLASS(CDbOrderByStage) : public CDbBasicWindowStage
307 enum TState { EReset, EEvaluate, ESort, EAdd, EComplete, EFailed };
309 CDbOrderByStage( const RDbTableRow& aRow );
311 void ConstructL( const CDbKey& aOrderBy );
314 TBool DoEvaluateL( TInt& aWork );
317 inline const RDbTableRow& Row();
318 inline CKeys& Keys();
319 inline const HOrdering& Order();
321 TBool ReadL( TInt& aWork, TDbPosition aNext );
323 const RDbTableRow& iRow;
335 inline RDbAccessPlan( CSqlQuery* aQuery, TDbTextComparison aComparison );
336 inline RDbAccessPlan();
337 void BuildLC( CDbTableDatabase& aDatabase, RDbRowSet::TAccess aAccess, const TDbWindow& aWindow );
338 void BuildLC( CDbTableDatabase& aDatabase, const TDesC& aTable, RDbRowSet::TAccess aAccess );
339 inline CDbTable& Table();
340 inline CDbDataSource& Source();
341 inline CDbDataSource* Adopt();
348 EOrder = 0x1, ERestrict = 0x2, EReorder = 0x4,
349 EIndex = 0x8, EBounded = 0x10,
350 EWindow = 0x20, EReverse = 0x40,
355 EPlanA = 0, EPlanB = 0, EPlanC = 0, EPlanD = 0, EPlanEF = 1, EPlanGH = 7, EPlanIJ = 2,
356 EPlanKL = 5, EPlanMN = 4, EPlanOP = 3, EPlanQR = 6, EPlanST = 8
360 inline TBool operator!=( const TPlan& aPlan ) const;
362 static TInt OrderByPlan( const TPlan& aLeft, const TPlan& aRight );
365 const CDbTableIndexDef* iIndex;
366 CSqlCompPredicate* iLower;
367 CSqlCompPredicate* iUpper;
370 CDbTableSource* TableLC( CDbTableDatabase& aDatabase, const TDesC& aTable );
371 void Insert( CDbDataStage* aStage );
372 CDbRecordIter* IteratorL( const TPlan& aPlan );
373 CDbRecordIter* BoundedIteratorL( const TPlan& aPlan );
375 void OrderByL( const RDbTableRow& aRowBuf );
377 void WindowL( const TPlan& aPlan, const TDbWindow& aWindow );
378 static void Cleanup( TAny* aPtr );
379 TBool IsBoundedIteratorL( TPlan& aPlan, const CDbTableIndexDef* aIndex );
380 TBool IsIndexIteratorL( TPlan& aPlan, const CDbTableIndexDef* aIndex );
381 void EvaluateWindowStage( TPlan& aPlan );
382 void EvaluateReorderStage( TPlan& aPlan, const CDbTableIndexDef* aIndex );
383 void EvaluatePlansL();
384 void ChoosePlanL( TPlan& aPlan );
385 void PrepareQueryL( CDbTableSource* aSource );
386 TInt GetTightestRestrictionL( TPlan& aPlan, TPlan::TType aType );
387 TInt GetSmallestKeySize( TPlan& aPlan, TPlan::TType aType );
388 TInt IndexSpanL( const TPlan& aPlan );
390 void CreateTableIteratorPlan( TPlan& aPlan );
391 TUint FindMatchL( const CDbTableIndexDef* aIndex );
392 TBool TextKeyL( const CDbKey& anOrder );
394 enum { EGranularity = 4 };
395 enum { EMatch = 0x1, EReverse = 0x2, ETruncated = 0x4 };
398 class CDbCompPredicateList;
400 RArray<TPlan> iPlans;
401 CDbDataSource* iSource;
403 TDbTextComparison iComparison;
406 RDbRowSet::TAccess iAccess;
409 class RDbAccessPlan::TBounds
412 TBounds( const TPlan& aPlan );
414 void GetLookupKey( const CSqlCompPredicate& aCompPredicate, TDbLookupKey& aLookup );
415 void SetLowerBounds();
416 void SetUpperBounds();
418 CSqlCompPredicate* iLowerPred;
419 CSqlCompPredicate* iUpperPred;
420 TDbLookupKey iLowerKey;
421 TDbLookupKey iUpperKey;
422 TDbLookupKey* iLower;
423 TDbLookupKey* iUpper;
427 class RDbAccessPlan::CDbCompPredicateList : public CArrayFixFlat<CSqlCompPredicate*>
436 EGreaterEqual = 0x10,
438 ECompPred = ELess | ELessEqual | EEqual | EGreaterEqual | EGreater,
442 static CDbCompPredicateList* NewLC( CSqlQuery& aQuery, TDbTextComparison aComparison, const CDbTableDef& aTableDef );
443 CSqlCompPredicate* CompPredicate( TDbColNo aColNo, TUint aType = ECompPred );
444 TUint Type( CSqlSearchCondition::TType aType ) const;
445 inline TBool IsRestriction();
447 inline CDbCompPredicateList( const CDbTableDef& aTableDef, TDbTextComparison aComparison );
448 void ConstructL( CSqlSearchCondition& aSeachCondition );
449 TBool IsIndexed( const TDesC& aColumnName );
451 enum { EGranularity = 4 };
453 const CDbTableDef& iTableDef;
454 TDbTextComparison iComparison;
458 class CDbTable::TValid
464 TValid(CDbTable& aTable);
467 inline operator TAny*() const;
470 inline RDbTransaction& Transaction() const;
471 inline CDbTable& Table() const;
474 TDbGenerationMark iRollback;
477 NONSHARABLE_CLASS(CDbTableCursor) : public CDbCursor
483 static CDbTableCursor* NewL( RDbAccessPlan& aPlan, RDbRowSet::TAccess aAccess );
485 inline CDbBlobSpace& BlobsL() const;
486 inline void AddSink();
487 inline void ReleaseSink();
488 inline void AddSource();
489 inline void ReleaseSource();
490 void AddBlobSource();
491 void ReleaseBlobSource();
493 CDbTableCursor( RDbAccessPlan& aPlan, RDbRowSet::TAccess anAccess );
498 void Evaluate( TRequestStatus& aStatus );
501 void SetIndexL( const TDesC* anIndex );
502 TBool SeekL( const TDbLookupKey& aKey, RDbTable::TComparison aComparison );
503 CDbRowConstraint* OpenConstraintL( const TDbQuery& aCriteria );
504 TBool MatchL( CDbRowConstraint& aConstraint );
506 TInt CountL( RDbRowSet::TAccuracy aAccuracy );
510 TBool GotoL( RDbRowSet::TPosition aPosition );
511 void Bookmark( TDbBookmark::TMark& aMark );
512 void GotoL( const TDbBookmark::TMark& aMark );
514 void InsertL( TInsert aClearRow );
521 TDbColType ColumnType( TDbColNo aCol );
522 void ColumnDef( TDbCol& aCol, TDbColNo aColNo );
525 TDbColumnC ColumnC( TDbColNo aCol ); // non-writeable row buffer
526 TDbColumn Column( TDbColNo aCol ); // writeable row buffer
527 void SetNullL( TDbColNo aCol );
528 TInt ColumnSize( TDbColNo aCol );
529 MStreamBuf* ColumnSourceL( TDbColNo aCol );
530 MStreamBuf* ColumnSinkL( TDbColNo aCol );
532 TDbColType Type( TDbColNo aCol ) const;
533 void ReplaceBlobL( TDbColumn& aColumn );
534 inline TBool InUpdate() const;
535 inline RDbTransaction& Transaction();
536 void CheckStateL() const;
537 void CheckReadL() const;
538 void CheckUpdateL() const;
539 void AssertValidRow() const;
540 void AssertNotInUpdate() const;
541 void AssertInUpdate() const;
542 void AssertNoStreams() const;
553 }; // keep these in same order as CDbDataSource::TDelete
564 enum { EMaxReadBuf = 255 };
575 CDbTable::TValid iValid;
576 CDbDataSource* iDataSource;
582 NONSHARABLE_CLASS(CDbTableCursor::HWriteBuf) : public TDesBuf
585 static HWriteBuf* NewL( CDbTableCursor& aCursor, const TDbColumn& aColumn, TDbColType aType );
587 inline HWriteBuf( CDbTableCursor& aCursor, const TDbColumn& aColumn, TDbColType aType );
588 virtual inline ~HWriteBuf();
591 inline TBool IsBinary() const;
596 TInt DoReadL( TAny* aPtr, TInt aMaxLength );
597 TStreamTransfer DoReadL( MStreamInput& aInput, TStreamTransfer aTransfer );
598 void DoWriteL( const TAny* aPtr, TInt aLength );
599 TStreamTransfer DoWriteL( MStreamOutput& aOutput, TStreamTransfer aTransfer );
600 TStreamPos DoSeekL( TMark aMark, TStreamLocation aLocation, TInt aOffset );
602 CDbTableCursor& iCursor;
609 MStreamBuf* iOverflowBuf;
612 NONSHARABLE_CLASS(CDbTableCursor::HMemBuf) : public TMemBuf
615 static HMemBuf* NewL( CDbTableCursor& aCursor, const TDesC8& aDes );
617 HMemBuf( CDbTableCursor& aCursor );
618 virtual inline ~HMemBuf();
622 CDbTableCursor& iCursor;
625 class CDbTableCursor::HHeapBuf : public CDbTableCursor::HMemBuf
628 enum { EMaxBlobBuffer = 0x600 }; // 1.5K to match KDbsStreamBufSize
630 static HHeapBuf* NewL( CDbTableCursor& aCursor, const TDbBlob& aBlob, TDbColType aType );
632 inline HHeapBuf( CDbTableCursor& aCursor );
637 NONSHARABLE_CLASS(CDbTableCursor::HReadBuf) : public MStreamBuf
640 static HReadBuf* NewLC( CDbTableCursor& aCursor );
641 inline void Set( MStreamBuf* aHost );
643 inline HReadBuf( CDbTableCursor& aCursor );
644 virtual inline ~HReadBuf();
647 TInt DoReadL( TAny* aPtr, TInt aMaxLength );
648 TStreamTransfer DoReadL( MStreamInput& aInput, TStreamTransfer aTransfer );
649 TStreamPos DoSeekL( TMark aMark, TStreamLocation aLocation, TInt aOffset );
651 CDbTableCursor& iCursor;
655 NONSHARABLE_CLASS(CDbTableDatabase::CIncremental) : public CDbSyncIncremental
661 enum { ELastStep = 1 };
662 enum TState { ERunning = 0, EFailed, ECommitted };
664 inline void Construct( CStepper* aStepper );
666 CIncremental( RDbTransaction& aTransaction );
668 inline RDbTransaction& Transaction();
669 inline CDbTableDatabase& Database();
670 inline TBool IsCommitted() const;
672 TBool NextL( TInt& aStep );
673 virtual TInt DoNextL( TInt aStep );
674 virtual void DoLastL() =0;
676 RDbTransaction& iTransaction;
681 NONSHARABLE_CLASS(CDbTableDatabase::CIncrementalDDL) : public CDbTableDatabase::CIncremental
687 CIncrementalDDL( RDbTransaction& aTransaction );
693 class CDbTableDatabase::CCreateIndex : public CDbTableDatabase::CIncrementalDDL
699 static CCreateIndex* NewLC( RDbTransaction& aTransaction );
700 TInt ConstructL( const CDbTableDef& aTable, const CDbTableIndexDef& anIndex );
702 inline CCreateIndex( RDbTransaction& aTransaction );
705 NONSHARABLE_CLASS(CDbTableDatabase::CDropIndex) : public CDbTableDatabase::CIncrementalDDL
711 static CDropIndex* NewL( RDbTransaction& aTransaction, const CDbTableDef& aTable, CDbTableIndexDef* anIndex, TInt& aStep );
714 inline CDropIndex( RDbTransaction& aTransaction );
716 CDbTableIndexDef* iDef;
719 NONSHARABLE_CLASS(CDbTableDatabase::CDropTable) : public CDbTableDatabase::CIncrementalDDL
725 static CDropTable* NewL( RDbTransaction& aTransaction, CDbTableDef* aTable, TInt& aStep );
728 inline CDropTable( RDbTransaction& aTransaction );
733 NONSHARABLE_CLASS(CDbTableDatabase::CAlterTable) : public CDbTableDatabase::CIncrementalDDL
739 static CAlterTable* NewL( RDbTransaction& aTransaction, CDbTableDef& aTable, const CDbColSet& aNewDef, TInt& aStep );
742 inline CAlterTable( RDbTransaction& aTransaction, CDbTableDef& aDef );
743 void ConstructL( const CDbColSet& aNewDef, TInt& aStep );
748 HDbColumnSet* iNewSet;
751 NONSHARABLE_CLASS(CDbTableDatabase::CUtility) : public CDbTableDatabase::CIncremental
757 static CUtility* NewL( RDbTransaction& aTransaction, CDbDatabase::TUtility aType, TInt& aStep );
760 inline CUtility( RDbTransaction& aTransaction, CDbDatabase::TUtility aType );
765 NONSHARABLE_CLASS(CDbIncrementalDML) : public CDbSyncIncremental
771 static CDbIncrementalDML* NewL( CSqlModifyStatement& aStatement, CDbTableDatabase& aDatabase, TDbTextComparison aComparison );
772 ~CDbIncrementalDML();
774 enum TState { EInitialising = 0, EEvaluating, EUpdating, EDeleting, ECommitted, EFailed };
776 inline CDbIncrementalDML( RDbAccessPlan& aPlan );
777 inline RDbTransaction& Transaction();
778 inline TBool IsUpdate() const;
779 inline void SetState( TState aState );
780 // from CDbSyncIncremental
781 TBool NextL( TInt& aRows );
785 CDbDataSource* iSource;
790 NONSHARABLE_CLASS(CDbTableDatabase::CInterface) : public CDbDatabase
792 the interface implementation class for the Table database framework
797 CInterface(CDbTableDatabase& aDatabase);
800 inline CDbTableDatabase& Database();
802 // from the interface framework
807 TInt Property( TProperty aProperty );
808 void CreateTableL( const TDesC& aName, const CDbColSet& aColSet, const CDbKey* aPrimaryKey );
809 void TablesL( CDbTableNames& aNames );
810 void ColumnsL( CDbColSet& aColSet, const TDesC& aName );
811 void IndexesL( CDbIndexNames& aNames, const TDesC& aTable );
812 void KeysL( CDbKey& aKey, const TDesC& aName, const TDesC& aTable );
813 CDbNotifier* OpenNotifierL();
814 CDbCursor* PrepareViewL( const TDbQuery& aQuery, const TDbWindow& aWindow, RDbRowSet::TAccess anAccess );
815 CDbCursor* OpenTableL( const TDesC& aName, RDbRowSet::TAccess anAccess );
816 CDbIncremental* OpenDropTableL( const TDesC& aTable, TInt& aStep );
817 CDbIncremental* OpenAlterTableL( const TDesC& aTable, const CDbColSet& aNewDef, TInt& aStep );
818 CDbIncremental* OpenCreateIndexL( const TDesC& aName, const TDesC& aTable, const CDbKey& aKey, TInt& aStep );
819 CDbIncremental* OpenDropIndexL( const TDesC& aName, const TDesC& aTable, TInt& aStep );
820 CDbIncremental* OpenUtilityL( CDbDatabase::TUtility aType, TInt& aStep );
821 CDbIncremental* OpenExecuteL( const TDesC& aSql, TDbTextComparison aComparison, TInt& aInit );
823 CDbTableDatabase& iDatabase;
826 NONSHARABLE_CLASS(CDbTableDatabase::CSource) : public CDbSource
832 CSource( CDbTableDatabase& aDatabase );
835 inline CDbTableDatabase& Database();
836 // from the framework
837 CDbDatabase* AuthenticateL();
838 CDbNotifier* OpenNotifierL();
840 CDbTableDatabase& iDatabase;
843 #include "UT_STD.INL"