Update contrib.
1 // Copyright (c) 2006-2010 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 #ifndef __SQLSRVUTIL_H__
17 #define __SQLSRVUTIL_H__
19 #include <f32file.h> //RFs - used in SqlSrvUtil.inl
20 #include "SqlSrvStrings.h" //KSystemPrefix16, KSystemPrefix8, KSqlitePrefix16, KSqlitePrefix8 - used in SqlSrvUtil.inl
21 #include "SqlUtil.h" //CompareNoCase() - used in SqlSrvUtil.inl
23 inline TBool IsSystemTableName(const TDesC16& aTableName);
24 inline TBool IsSystemTableName(const TDesC8& aTableName);
25 inline TBool IsSqliteTableName(const TDesC8& aTableName);
27 #ifdef _SQL_AUTHORIZER_TRACE_ENABLED
28 void PrintAuthorizerArguments(TInt aDbOpType,
29 const char* aDbObjName1,
30 const char* aDbObjName2,
32 const char* aTrgOrViewName);
35 TBool UTF16ToUTF8(const TDesC& aIn, TDes8& aOut);
36 TBool UTF16ZToUTF8Z(const TDesC& aFileName, TDes8& aFileNameDestBuf);
37 TBool UTF16ToUTF8Z(const TDesC& aFileName, TDes8& aFileNameDestBuf);
38 inline TBool FileExists(RFs& aFs, const TDesC& aFileName);
39 TBool IsReadOnlyFileL(RFs& aFs, const TDesC& aDbFileName);
41 #include "SqlSrvUtil.inl"
43 #endif//__SQLSRVUTIL_H__