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.
23 static HDbColumnMap* NewL(const RSqlColumnList& aSelect,const HDbColumnSet& aColumns);
24 inline const TDbColNo& operator[](TDbColNo aCol) const
25 {__ASSERT(aCol>0&&aCol<=iCount);return iMap[aCol-1];}
26 inline TInt Count() const
30 TDbColNo iMap[1]; // at least one
33 HDbColumnMap* HDbColumnMap::NewL(const RSqlColumnList& aSelect,const HDbColumnSet& aColumns)
35 TInt count=aSelect.Count();
36 HDbColumnMap* self=(HDbColumnMap*)User::AllocLC(_FOFF(HDbColumnMap,iMap[count]));
38 TDbColNo* pCol=&self->iMap[0];
39 for (TInt ii=0;ii<count;++ii)
41 TDbColNo col=aColumns.ColNoL(aSelect[ii]);
42 if (col==KDbNullColNo)
43 __LEAVE(KErrNotFound);
50 // Class CDbProjectStage
52 CDbProjectStage::CDbProjectStage()
55 CDbProjectStage::~CDbProjectStage()
60 void CDbProjectStage::ConstructL(const RSqlColumnList& aSelect,const HDbColumnSet& aColumns)
62 // Build the column map and allocate a row buffer
65 iMap=HDbColumnMap::NewL(aSelect,aColumns);
68 RDbRow* CDbProjectStage::RowBuffer()
70 // whole-row access cannot be done through a projection
76 TDbColumn CDbProjectStage::Column(TDbColNo aColNo)
78 return CDbDataStage::Column((*iMap)[aColNo]);
81 TInt CDbProjectStage::ColumnCount() const
86 const TDbColumnDef& CDbProjectStage::ColumnDef(TDbColNo aCol) const
88 return CDbDataStage::ColumnDef((*iMap)[aCol]);