os/persistentdata/persistentstorage/sql/SRC/Server/SqlSrvStrings.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/sql/SRC/Server/SqlSrvStrings.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,127 @@
     1.4 +// Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Global strings, whic are declared once in this header file and used in the SQL server source files.
    1.18 +// Make sure that __SQLSRV_STRINGS__ macro is defined only once in SqlSrvStrings.cpp file, before the
    1.19 +// include of "SqlSrvStrings.h", which ensures that only one copy of the strings is included in the
    1.20 +// executable server image.
    1.21 +// 
    1.22 +//
    1.23 +
    1.24 +#ifndef __SQLSRVSTRINGS_H__
    1.25 +#define __SQLSRVSTRINGS_H__
    1.26 +
    1.27 +#include <e32std.h>
    1.28 +
    1.29 +#ifdef __SQLSRV_STRINGS__
    1.30 +	#define CONST_LIT8(var, val) extern const TLitC8<sizeof(val)> var = {sizeof(val) - 1, val}
    1.31 +	#define CONST_LIT16(var, val) extern const TLitC16<sizeof(L##val)/2> var = {sizeof(L##val)/2 - 1, L##val}
    1.32 +	#define CONST_TTEXT(var, val) extern const TText var = val
    1.33 +#else
    1.34 +	#define CONST_LIT8(var, val) extern const TLitC8<sizeof(val)> var
    1.35 +	#define CONST_LIT16(var, val) extern const TLitC16<sizeof(L##val)/2> var
    1.36 +	#define CONST_TTEXT(var, val) extern const TText var
    1.37 +#endif
    1.38 +
    1.39 +#ifdef _UNICODE
    1.40 +	#define CONST_LIT(var, val) CONST_LIT16(var, val)
    1.41 +#else
    1.42 +	#define CONST_LIT(var, val) CONST_LIT8(var, val)
    1.43 +#endif
    1.44 +
    1.45 +//System table names
    1.46 +//If you need to change the system tables name prefix, please check SqlSrvDbSysSettings.cpp file, 
    1.47 +//where this prefix is used in sql statements and modify the statements.
    1.48 +CONST_LIT8(KSqlitePrefix8,			"sqlite_");
    1.49 +CONST_LIT8(KSystemPrefix8,			"symbian_");
    1.50 +CONST_LIT8(KMasterTable8,			"sqlite_master");
    1.51 +CONST_LIT8(KSecurityTable8,			"symbian_security");
    1.52 +CONST_LIT8(KSettingsTable8,			"symbian_settings");
    1.53 +
    1.54 +CONST_LIT16(KSqlitePrefix16,		"sqlite_");
    1.55 +CONST_LIT16(KSystemPrefix16,		"symbian_");
    1.56 +CONST_LIT16(KMasterTable16,			"sqlite_master");
    1.57 +CONST_LIT16(KSecurityTable16,		"symbian_security");
    1.58 +CONST_LIT16(KSettingsTable16,		"symbian_settings");
    1.59 +
    1.60 +// config consts
    1.61 +#if defined SYSLIBS_TEST || defined SQL_SOFT_HEAP_LIMIT_TEST
    1.62 +CONST_LIT16(KSqlSrvDefaultConfigFile, "c:\\test\\t_sqlserver.cfg");
    1.63 +CONST_LIT16(KSqlSrvDbConfigFileFormat, "c:cfg*");
    1.64 +#else
    1.65 +CONST_LIT16(KSqlSrvDefaultConfigFile, "z:SqlServer.cfg");
    1.66 +CONST_LIT16(KSqlSrvDbConfigFileFormat, "z:cfg*");
    1.67 +#endif
    1.68 +CONST_LIT8(KSoftHeapLimitKb,"soft_heap_limit_kb");
    1.69 +CONST_LIT8(KCompactionMode,"compaction");
    1.70 +CONST_LIT8(KFreePageThresholdKb,"free_space_threshold_kb");
    1.71 +CONST_LIT8(KUTF8,"UTF-8");
    1.72 +CONST_LIT8(KUTF8Q,"\"UTF-8\"");
    1.73 +CONST_LIT8(KUTF16,"UTF-16");
    1.74 +CONST_LIT8(KUTF16Q,"\"UTF-16\"");
    1.75 +CONST_LIT8(KManual,"manual");
    1.76 +CONST_LIT8(KBackground,"background");
    1.77 +CONST_LIT8(KAuto,"auto");
    1.78 +CONST_LIT8(KSynchronous,"synchronous");
    1.79 +
    1.80 +//System database names
    1.81 +CONST_LIT16(KMainDb16,	"main");
    1.82 +CONST_LIT8(KMainDb8,	"main");
    1.83 +CONST_LIT8(KTempDb8,	"temp");
    1.84 +
    1.85 +//Setting isolation level SQL statements (zero-terminated strings)
    1.86 +CONST_LIT8(KReadUncommittedPragma, "PRAGMA read_uncommitted = True;\x0");
    1.87 +CONST_LIT8(KSerializablePragma,	 "PRAGMA read_uncommitted = False;\x0");
    1.88 +
    1.89 +//Format of the file name when sending file handles in it
    1.90 +CONST_LIT16(KFileHandleFmt,		"|%d%08X%S%08X%S|\x0");
    1.91 +const TUint KFileHandleSeparator = '|';
    1.92 +
    1.93 +//SQlite Pragma Commands
    1.94 +CONST_LIT8(KAutoVacuum,				"auto_vacuum");			
    1.95 +CONST_LIT8(KCacheSize, 				"cache_size");			
    1.96 +CONST_LIT8(KCaseSensitiveLike, 		"case_sensitive_like");		
    1.97 +CONST_LIT8(KCountChanges, 			"count_changes");		
    1.98 +CONST_LIT8(KDefaultCacheSize, 		"default_cache_size");			
    1.99 +CONST_LIT8(KEmptyResultCallbacks, 	"empty_result_callbacks");			
   1.100 +CONST_LIT8(KEncoding, 				"encoding");				
   1.101 +CONST_LIT8(KFullColumnNames, 		"full_column_names");					
   1.102 +CONST_LIT8(KFullfsync, 				"fullfsync");				
   1.103 +CONST_LIT8(KIncrementalVacuum, 		"incremental_vacuum");				
   1.104 +CONST_LIT8(KJournalMode, 			"journal_mode");			
   1.105 +CONST_LIT8(KJournalSizeLimit, 		"journal_size_limit");			
   1.106 +CONST_LIT8(KLegacyFileFormat, 		"legacy_file_format");		
   1.107 +CONST_LIT8(KLockingMode, 			"locking_mode");			
   1.108 +CONST_LIT8(KPageSize, 				"page_size");			
   1.109 +CONST_LIT8(KMaxPageCount, 			"max_page_count");				
   1.110 +CONST_LIT8(KReadUncommitted, 		"read_uncommitted");					
   1.111 +CONST_LIT8(KShortColumnNames, 		"short_column_names");					
   1.112 +CONST_LIT8(KSynchronousFlag, 		"synchronous");					
   1.113 +CONST_LIT8(KTempStore, 				"temp_store");					
   1.114 +CONST_LIT8(KTempStoreDirectory, 	"temp_store_directory");				
   1.115 +CONST_LIT8(KDatabaseList, 			"database_list");					
   1.116 +CONST_LIT8(KForeignKeyList, 		"foreign_key_list");								
   1.117 +CONST_LIT8(KFreelistCount, 			"freelist_count");				
   1.118 +CONST_LIT8(KIndexInfo, 				"index_info");					
   1.119 +CONST_LIT8(KIndexIist, 				"index_list");					
   1.120 +CONST_LIT8(KPageCount, 				"page_count");		
   1.121 +CONST_LIT8(KTableInfo, 				"table_info");			
   1.122 +CONST_LIT8(KSchemaVersion, 			"schema_version");			
   1.123 +CONST_LIT8(KUserVersion, 			"user_version");
   1.124 +CONST_LIT8(KIntegrityCheck, 		"integrity_check");
   1.125 +CONST_LIT8(KParserTrace, 			"parser_trace");
   1.126 +CONST_LIT8(KVdbeTrace, 				"vdbe_trace");
   1.127 +CONST_LIT8(KdbeListing, 			"vdbe_listing");
   1.128 +
   1.129 +
   1.130 +#endif//__SQLSRVSTRINGS_H__