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.
16 inline TBool IsLong( TDbColType aType )
17 { return aType >= EDbColLongText8; }
19 inline TBool IsIntegral( TDbColType aType )
20 { return aType <= EDbColInt64; }
22 inline TBool IsSigned(TDbColType aType)
23 { __ASSERT( IsIntegral( aType ) ); return aType&1; }
25 inline TBool IsUnsigned( TDbColType aType )
26 { return !IsSigned( aType ); }
29 inline MStreamBuf *RDbRowSet::ColSourceL( TDbColNo aCol ) const
30 { return CheckCol( aCol ).ColumnSourceL( aCol ); }
32 inline MStreamBuf *RDbRowSet::ColSinkL( TDbColNo aCol )
33 { return CheckCol( aCol ).ColumnSinkL( aCol ); }
36 inline TBool RDbRow::Owned() const
37 { return iColumn & static_cast<TUint>( EOwned ); }
39 inline TInt RDbRow::Column() const
40 { return iColumn & ~EOwned; }
42 inline void RDbRow::SetCache( TDbCell* aCell, TInt aColumn )
43 { iCell = aCell; iColumn = (iColumn & static_cast<TUint>( EOwned ) ) | aColumn; }