os/persistentdata/persistentstorage/sql/SRC/Server/SqlSrvUtil.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef __SQLSRVUTIL_H__
    17 #define __SQLSRVUTIL_H__
    18 
    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
    22 
    23 inline TBool IsSystemTableName(const TDesC16& aTableName);
    24 inline TBool IsSystemTableName(const TDesC8& aTableName);
    25 inline TBool IsSqliteTableName(const TDesC8& aTableName);
    26 
    27 #ifdef _SQL_AUTHORIZER_TRACE_ENABLED
    28 void PrintAuthorizerArguments(TInt aDbOpType, 
    29                               const char* aDbObjName1, 
    30                               const char* aDbObjName2, 
    31 							  const char* aDbName, 
    32 							  const char* aTrgOrViewName);
    33 #endif
    34 
    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);
    40 
    41 #include "SqlSrvUtil.inl"
    42 
    43 #endif//__SQLSRVUTIL_H__