sl@0
|
1 |
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "UQ_STD.H"
|
sl@0
|
17 |
|
sl@0
|
18 |
// class CSqlBoundNode
|
sl@0
|
19 |
|
sl@0
|
20 |
CSqlBoundNode::CSqlBoundNode(TType aType,const TDesC& aColumn)
|
sl@0
|
21 |
: CSqlSearchCondition(aType)
|
sl@0
|
22 |
{
|
sl@0
|
23 |
iColumn.iName.Set(aColumn);
|
sl@0
|
24 |
}
|
sl@0
|
25 |
|
sl@0
|
26 |
void CSqlBoundNode::BindL(const RDbTableRow& aSource)
|
sl@0
|
27 |
{
|
sl@0
|
28 |
const HDbColumnSet& columns=aSource.Table().Def().Columns();
|
sl@0
|
29 |
TDbColNo col=columns.ColNoL(iColumn.iName());
|
sl@0
|
30 |
if (col==KDbNullColNo)
|
sl@0
|
31 |
__LEAVE(KErrNotFound);
|
sl@0
|
32 |
iSource=&aSource;
|
sl@0
|
33 |
iColumn.iBound.iNumber=col;
|
sl@0
|
34 |
iColumn.iBound.iType=columns[col].Type();
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
const TDesC& CSqlBoundNode::ColumnName() const
|
sl@0
|
38 |
//
|
sl@0
|
39 |
// Return the column name
|
sl@0
|
40 |
// If not bound it is embedded, otherwise lookup via the column def
|
sl@0
|
41 |
//
|
sl@0
|
42 |
{
|
sl@0
|
43 |
if (IsBound())
|
sl@0
|
44 |
return *iSource->Table().Def().Columns()[iColumn.iBound.iNumber].iName;
|
sl@0
|
45 |
return (const TPtrC&)iColumn.iName;
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
MStreamBuf& CSqlBoundNode::StreamLC(const TDbBlob& aBlob) const
|
sl@0
|
49 |
{
|
sl@0
|
50 |
__ASSERT(!aBlob.IsInline());
|
sl@0
|
51 |
return *iSource->Table().BlobsL()->ReadLC(aBlob.Id(),ColType());
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|