sl@0: // Copyright (c) 2006-2010 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: #ifndef __SQLSRVUTIL_H__ sl@0: #define __SQLSRVUTIL_H__ sl@0: sl@0: #include //RFs - used in SqlSrvUtil.inl sl@0: #include "SqlSrvStrings.h" //KSystemPrefix16, KSystemPrefix8, KSqlitePrefix16, KSqlitePrefix8 - used in SqlSrvUtil.inl sl@0: #include "SqlUtil.h" //CompareNoCase() - used in SqlSrvUtil.inl sl@0: sl@0: inline TBool IsSystemTableName(const TDesC16& aTableName); sl@0: inline TBool IsSystemTableName(const TDesC8& aTableName); sl@0: inline TBool IsSqliteTableName(const TDesC8& aTableName); sl@0: sl@0: #ifdef _SQL_AUTHORIZER_TRACE_ENABLED sl@0: void PrintAuthorizerArguments(TInt aDbOpType, sl@0: const char* aDbObjName1, sl@0: const char* aDbObjName2, sl@0: const char* aDbName, sl@0: const char* aTrgOrViewName); sl@0: #endif sl@0: sl@0: TBool UTF16ToUTF8(const TDesC& aIn, TDes8& aOut); sl@0: TBool UTF16ZToUTF8Z(const TDesC& aFileName, TDes8& aFileNameDestBuf); sl@0: TBool UTF16ToUTF8Z(const TDesC& aFileName, TDes8& aFileNameDestBuf); sl@0: inline TBool FileExists(RFs& aFs, const TDesC& aFileName); sl@0: TBool IsReadOnlyFileL(RFs& aFs, const TDesC& aDbFileName); sl@0: sl@0: #include "SqlSrvUtil.inl" sl@0: sl@0: #endif//__SQLSRVUTIL_H__