Update contrib.
1 // Copyright (c) 2006-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.
18 @param aTableName UTF16 encoded table name.
20 @return Non-zero if aTableName is one of the system tables (the table name prefix is KSystemPrefix16).
24 inline TBool IsSystemTableName(const TDesC16& aTableName)
26 return ::CompareNoCase16(aTableName.Left(KSystemPrefix16().Length()), KSystemPrefix16) == 0;
30 @param aTableName UTF8 encoded table name.
32 @return Non-zero if aTableName is one of the system tables (the table name prefix is KSystemPrefix8).
36 inline TBool IsSystemTableName(const TDesC8& aTableName)
38 return ::CompareNoCase8(aTableName.Left(KSystemPrefix8().Length()), KSystemPrefix8) == 0;
42 @param aTableName UTF8 encoded table name.
44 @return Non-zero if aTableName name prefix is is KSqlitePrefix8.
48 inline TBool IsSqliteTableName(const TDesC8& aTableName)
50 return ::CompareNoCase8(aTableName.Left(KSqlitePrefix8().Length()), KSqlitePrefix8) == 0;
54 Returns non-zero if a file with "aFileName" name exists.
58 inline TBool FileExists(RFs& aFs, const TDesC& aFileName)
61 return aFs.Entry(aFileName, entry) == KErrNone;