sl@0: // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: // Class RSqlLiteral sl@0: inline RSqlLiteral::RSqlLiteral() sl@0: :iType(ENull) sl@0: {iBuffer=NULL;} sl@0: sl@0: inline TBool RSqlLiteral::IsAlloc() const sl@0: {return iType>=EBuf8;} sl@0: inline TBool RSqlLiteral::IsBasic() const sl@0: {return iType>=EInt64&&iType<=EPtr;} sl@0: sl@0: inline TInt64& RSqlLiteral::SetInt() sl@0: {__ASSERT(!IsAlloc());iType=EInt64;return iVal.iInt64();} sl@0: inline TReal64& RSqlLiteral::SetReal() sl@0: {__ASSERT(!IsAlloc());iType=EReal64;return iVal.iReal64;} sl@0: inline TTime& RSqlLiteral::SetTime() sl@0: {__ASSERT(!IsAlloc());iType=ETime;return iVal.iTime();} sl@0: inline void RSqlLiteral::SetText(const TText* aPtr,const TText* aEnd) sl@0: {__ASSERT(!IsAlloc());iType=EPtr;iVal.iPtr.iPtr=aPtr;iVal.iPtr.iEnd=aEnd;} sl@0: sl@0: // Class TSqlToken sl@0: inline TBool TSqlToken::operator==(TSqlTokenType aType) const sl@0: {return iType==aType;} sl@0: inline TBool TSqlToken::operator!=(TSqlTokenType aType) const sl@0: {return iType!=aType;} sl@0: inline TSqlTokenType TSqlToken::operator=(TSqlTokenType aType) sl@0: {iType=aType;return aType;} sl@0: inline void TSqlToken::SetError(TInt aError) sl@0: {iType=aError;} sl@0: inline TInt TSqlToken::Error() const sl@0: {return Min(iType,0);} sl@0: inline TSqlTokenType TSqlToken::Type() const sl@0: {return TSqlTokenType(iType);} sl@0: inline RSqlLiteral& TSqlToken::Literal() sl@0: {__ASSERT(iType>=ESqlIdentifier&&iType<=ESqlLiteralText);return iLiteral;} sl@0: inline const RSqlLiteral& TSqlToken::Literal() const sl@0: {__ASSERT(iType>=ESqlIdentifier&&iType<=ESqlLiteralText);return iLiteral;} sl@0: sl@0: // class TSqlLexer sl@0: inline TSqlTokenType TSqlLexer::NextToken(TSqlToken& aToken) sl@0: {return aToken=GetNextToken(aToken);} sl@0: inline TSqlTokenType TSqlLexer::SqlError(TInt aError) sl@0: {return TSqlTokenType(aError);} sl@0: inline TBool TSqlLexer::IsKeyword(TSqlKeyword aKeyword,const TSqlToken& aToken) sl@0: {return aToken==ESqlIdentifier && CompareKeyword(aKeyword,aToken.Literal())==0;} sl@0: sl@0: // class TSqlParser sl@0: inline TInt TSqlParser::Error() const sl@0: {return iToken.Error();} sl@0: sl@0: // Class CSqlBoundNode sl@0: inline TDbColumnC CSqlBoundNode::Column() const sl@0: {return TDbColumnC(*iSource,iColumn.iBound.iNumber);} sl@0: sl@0: // type-matching compiler support sl@0: inline TUint8* PtrType(const TDesC8&) sl@0: {return 0;} sl@0: inline TUint16* PtrType(const TDesC16&) sl@0: {return 0;}