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.
14 // SQL Comparison predicate node class
21 // class CSqlCompPredicate
23 CSqlCompPredicate::CSqlCompPredicate(TType aType,const TDesC& aColumn,const RSqlLiteral& aLiteral)
24 : CSqlLiteralNode(aType,aColumn,aLiteral)
26 __ASSERT(aType==ELess||aType==ELessEqual||aType==EEqual||aType==EGreaterEqual||aType==EGreater||aType==ENotEqual);
29 TInt CSqlCompPredicate::CompareLongText8L(const TDbBlob& aBlob,const TTextOps& aTextOp) const
31 TInt r=Comp::Compare8L(StreamLC(aBlob),aBlob.Size(),Value().Text8(),aTextOp);
32 CleanupStack::PopAndDestroy();
36 TInt CSqlCompPredicate::CompareLongText16L(const TDbBlob& aBlob,const TTextOps& aTextOp) const
38 TInt r=Comp::Compare16L(StreamLC(aBlob),aBlob.Size(),Value().Text16(),aTextOp);
39 CleanupStack::PopAndDestroy();
43 TBool CSqlCompPredicate::EvaluateL(const TTextOps& aTextOp) const
45 // Evaluate a comparison between the columns and the data
46 // NULL numeric data always compares false
49 TDbColumnC col=Column();
50 TDbColType t=ColType();
51 if (t<=EDbColDateTime && col.IsNull())
52 return EFalse; // NULL always compares false for non-text columns
62 r=Comp::Compare(TInt64(TUint(col.Uint32())),Value().Int64());
67 r=Comp::Compare(TInt64(TInt(col.Int32())),Value().Int64());
70 r=Comp::Compare(col.Int64(),Value().Int64());
73 r=Comp::Compare(TReal(col.Real32()),Value().Real64());
76 r=Comp::Compare(col.Real64(),Value().Real64());
79 r=Comp::Compare(col.Time(),Value().Time());
82 r=aTextOp.Compare(col.PtrC8(),Value().Text8());
85 r=aTextOp.Compare(col.PtrC16(),Value().Text16());
89 const TDbBlob& blob=col.Blob();
91 r=aTextOp.Compare(blob.PtrC8(),Value().Text8());
93 r=CompareLongText8L(blob,aTextOp);
96 case EDbColLongText16:
98 const TDbBlob& blob=col.Blob();
100 r=aTextOp.Compare(blob.PtrC16(),Value().Text16());
102 r=CompareLongText16L(blob,aTextOp);
112 // drop throught to ELess
117 // drop throught to LessEqual