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 |
// Class RSqlLiteral
|
sl@0
|
17 |
inline RSqlLiteral::RSqlLiteral()
|
sl@0
|
18 |
:iType(ENull)
|
sl@0
|
19 |
{iBuffer=NULL;}
|
sl@0
|
20 |
|
sl@0
|
21 |
inline TBool RSqlLiteral::IsAlloc() const
|
sl@0
|
22 |
{return iType>=EBuf8;}
|
sl@0
|
23 |
inline TBool RSqlLiteral::IsBasic() const
|
sl@0
|
24 |
{return iType>=EInt64&&iType<=EPtr;}
|
sl@0
|
25 |
|
sl@0
|
26 |
inline TInt64& RSqlLiteral::SetInt()
|
sl@0
|
27 |
{__ASSERT(!IsAlloc());iType=EInt64;return iVal.iInt64();}
|
sl@0
|
28 |
inline TReal64& RSqlLiteral::SetReal()
|
sl@0
|
29 |
{__ASSERT(!IsAlloc());iType=EReal64;return iVal.iReal64;}
|
sl@0
|
30 |
inline TTime& RSqlLiteral::SetTime()
|
sl@0
|
31 |
{__ASSERT(!IsAlloc());iType=ETime;return iVal.iTime();}
|
sl@0
|
32 |
inline void RSqlLiteral::SetText(const TText* aPtr,const TText* aEnd)
|
sl@0
|
33 |
{__ASSERT(!IsAlloc());iType=EPtr;iVal.iPtr.iPtr=aPtr;iVal.iPtr.iEnd=aEnd;}
|
sl@0
|
34 |
|
sl@0
|
35 |
// Class TSqlToken
|
sl@0
|
36 |
inline TBool TSqlToken::operator==(TSqlTokenType aType) const
|
sl@0
|
37 |
{return iType==aType;}
|
sl@0
|
38 |
inline TBool TSqlToken::operator!=(TSqlTokenType aType) const
|
sl@0
|
39 |
{return iType!=aType;}
|
sl@0
|
40 |
inline TSqlTokenType TSqlToken::operator=(TSqlTokenType aType)
|
sl@0
|
41 |
{iType=aType;return aType;}
|
sl@0
|
42 |
inline void TSqlToken::SetError(TInt aError)
|
sl@0
|
43 |
{iType=aError;}
|
sl@0
|
44 |
inline TInt TSqlToken::Error() const
|
sl@0
|
45 |
{return Min(iType,0);}
|
sl@0
|
46 |
inline TSqlTokenType TSqlToken::Type() const
|
sl@0
|
47 |
{return TSqlTokenType(iType);}
|
sl@0
|
48 |
inline RSqlLiteral& TSqlToken::Literal()
|
sl@0
|
49 |
{__ASSERT(iType>=ESqlIdentifier&&iType<=ESqlLiteralText);return iLiteral;}
|
sl@0
|
50 |
inline const RSqlLiteral& TSqlToken::Literal() const
|
sl@0
|
51 |
{__ASSERT(iType>=ESqlIdentifier&&iType<=ESqlLiteralText);return iLiteral;}
|
sl@0
|
52 |
|
sl@0
|
53 |
// class TSqlLexer
|
sl@0
|
54 |
inline TSqlTokenType TSqlLexer::NextToken(TSqlToken& aToken)
|
sl@0
|
55 |
{return aToken=GetNextToken(aToken);}
|
sl@0
|
56 |
inline TSqlTokenType TSqlLexer::SqlError(TInt aError)
|
sl@0
|
57 |
{return TSqlTokenType(aError);}
|
sl@0
|
58 |
inline TBool TSqlLexer::IsKeyword(TSqlKeyword aKeyword,const TSqlToken& aToken)
|
sl@0
|
59 |
{return aToken==ESqlIdentifier && CompareKeyword(aKeyword,aToken.Literal())==0;}
|
sl@0
|
60 |
|
sl@0
|
61 |
// class TSqlParser
|
sl@0
|
62 |
inline TInt TSqlParser::Error() const
|
sl@0
|
63 |
{return iToken.Error();}
|
sl@0
|
64 |
|
sl@0
|
65 |
// Class CSqlBoundNode
|
sl@0
|
66 |
inline TDbColumnC CSqlBoundNode::Column() const
|
sl@0
|
67 |
{return TDbColumnC(*iSource,iColumn.iBound.iNumber);}
|
sl@0
|
68 |
|
sl@0
|
69 |
// type-matching compiler support
|
sl@0
|
70 |
inline TUint8* PtrType(const TDesC8&)
|
sl@0
|
71 |
{return 0;}
|
sl@0
|
72 |
inline TUint16* PtrType(const TDesC16&)
|
sl@0
|
73 |
{return 0;}
|