1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/dbms/usql/UQ_STD.INL Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,73 @@
1.4 +// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +// Class RSqlLiteral
1.20 +inline RSqlLiteral::RSqlLiteral()
1.21 + :iType(ENull)
1.22 + {iBuffer=NULL;}
1.23 +
1.24 +inline TBool RSqlLiteral::IsAlloc() const
1.25 + {return iType>=EBuf8;}
1.26 +inline TBool RSqlLiteral::IsBasic() const
1.27 + {return iType>=EInt64&&iType<=EPtr;}
1.28 +
1.29 +inline TInt64& RSqlLiteral::SetInt()
1.30 + {__ASSERT(!IsAlloc());iType=EInt64;return iVal.iInt64();}
1.31 +inline TReal64& RSqlLiteral::SetReal()
1.32 + {__ASSERT(!IsAlloc());iType=EReal64;return iVal.iReal64;}
1.33 +inline TTime& RSqlLiteral::SetTime()
1.34 + {__ASSERT(!IsAlloc());iType=ETime;return iVal.iTime();}
1.35 +inline void RSqlLiteral::SetText(const TText* aPtr,const TText* aEnd)
1.36 + {__ASSERT(!IsAlloc());iType=EPtr;iVal.iPtr.iPtr=aPtr;iVal.iPtr.iEnd=aEnd;}
1.37 +
1.38 +// Class TSqlToken
1.39 +inline TBool TSqlToken::operator==(TSqlTokenType aType) const
1.40 + {return iType==aType;}
1.41 +inline TBool TSqlToken::operator!=(TSqlTokenType aType) const
1.42 + {return iType!=aType;}
1.43 +inline TSqlTokenType TSqlToken::operator=(TSqlTokenType aType)
1.44 + {iType=aType;return aType;}
1.45 +inline void TSqlToken::SetError(TInt aError)
1.46 + {iType=aError;}
1.47 +inline TInt TSqlToken::Error() const
1.48 + {return Min(iType,0);}
1.49 +inline TSqlTokenType TSqlToken::Type() const
1.50 + {return TSqlTokenType(iType);}
1.51 +inline RSqlLiteral& TSqlToken::Literal()
1.52 + {__ASSERT(iType>=ESqlIdentifier&&iType<=ESqlLiteralText);return iLiteral;}
1.53 +inline const RSqlLiteral& TSqlToken::Literal() const
1.54 + {__ASSERT(iType>=ESqlIdentifier&&iType<=ESqlLiteralText);return iLiteral;}
1.55 +
1.56 +// class TSqlLexer
1.57 +inline TSqlTokenType TSqlLexer::NextToken(TSqlToken& aToken)
1.58 + {return aToken=GetNextToken(aToken);}
1.59 +inline TSqlTokenType TSqlLexer::SqlError(TInt aError)
1.60 + {return TSqlTokenType(aError);}
1.61 +inline TBool TSqlLexer::IsKeyword(TSqlKeyword aKeyword,const TSqlToken& aToken)
1.62 + {return aToken==ESqlIdentifier && CompareKeyword(aKeyword,aToken.Literal())==0;}
1.63 +
1.64 +// class TSqlParser
1.65 +inline TInt TSqlParser::Error() const
1.66 + {return iToken.Error();}
1.67 +
1.68 +// Class CSqlBoundNode
1.69 +inline TDbColumnC CSqlBoundNode::Column() const
1.70 + {return TDbColumnC(*iSource,iColumn.iBound.iNumber);}
1.71 +
1.72 +// type-matching compiler support
1.73 +inline TUint8* PtrType(const TDesC8&)
1.74 + {return 0;}
1.75 +inline TUint16* PtrType(const TDesC16&)
1.76 + {return 0;}