sl@0: // Copyright (c) 2005-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: // Global strings, whic are declared once in this header file and used in the SQL server source files. sl@0: // Make sure that __SQLSRV_STRINGS__ macro is defined only once in SqlSrvStrings.cpp file, before the sl@0: // include of "SqlSrvStrings.h", which ensures that only one copy of the strings is included in the sl@0: // executable server image. sl@0: // sl@0: // sl@0: sl@0: #ifndef __SQLSRVSTRINGS_H__ sl@0: #define __SQLSRVSTRINGS_H__ sl@0: sl@0: #include sl@0: sl@0: #ifdef __SQLSRV_STRINGS__ sl@0: #define CONST_LIT8(var, val) extern const TLitC8 var = {sizeof(val) - 1, val} sl@0: #define CONST_LIT16(var, val) extern const TLitC16 var = {sizeof(L##val)/2 - 1, L##val} sl@0: #define CONST_TTEXT(var, val) extern const TText var = val sl@0: #else sl@0: #define CONST_LIT8(var, val) extern const TLitC8 var sl@0: #define CONST_LIT16(var, val) extern const TLitC16 var sl@0: #define CONST_TTEXT(var, val) extern const TText var sl@0: #endif sl@0: sl@0: #ifdef _UNICODE sl@0: #define CONST_LIT(var, val) CONST_LIT16(var, val) sl@0: #else sl@0: #define CONST_LIT(var, val) CONST_LIT8(var, val) sl@0: #endif sl@0: sl@0: //System table names sl@0: //If you need to change the system tables name prefix, please check SqlSrvDbSysSettings.cpp file, sl@0: //where this prefix is used in sql statements and modify the statements. sl@0: CONST_LIT8(KSqlitePrefix8, "sqlite_"); sl@0: CONST_LIT8(KSystemPrefix8, "symbian_"); sl@0: CONST_LIT8(KMasterTable8, "sqlite_master"); sl@0: CONST_LIT8(KSecurityTable8, "symbian_security"); sl@0: CONST_LIT8(KSettingsTable8, "symbian_settings"); sl@0: sl@0: CONST_LIT16(KSqlitePrefix16, "sqlite_"); sl@0: CONST_LIT16(KSystemPrefix16, "symbian_"); sl@0: CONST_LIT16(KMasterTable16, "sqlite_master"); sl@0: CONST_LIT16(KSecurityTable16, "symbian_security"); sl@0: CONST_LIT16(KSettingsTable16, "symbian_settings"); sl@0: sl@0: // config consts sl@0: #if defined SYSLIBS_TEST || defined SQL_SOFT_HEAP_LIMIT_TEST sl@0: CONST_LIT16(KSqlSrvDefaultConfigFile, "c:\\test\\t_sqlserver.cfg"); sl@0: CONST_LIT16(KSqlSrvDbConfigFileFormat, "c:cfg*"); sl@0: #else sl@0: CONST_LIT16(KSqlSrvDefaultConfigFile, "z:SqlServer.cfg"); sl@0: CONST_LIT16(KSqlSrvDbConfigFileFormat, "z:cfg*"); sl@0: #endif sl@0: CONST_LIT8(KSoftHeapLimitKb,"soft_heap_limit_kb"); sl@0: CONST_LIT8(KCompactionMode,"compaction"); sl@0: CONST_LIT8(KFreePageThresholdKb,"free_space_threshold_kb"); sl@0: CONST_LIT8(KUTF8,"UTF-8"); sl@0: CONST_LIT8(KUTF8Q,"\"UTF-8\""); sl@0: CONST_LIT8(KUTF16,"UTF-16"); sl@0: CONST_LIT8(KUTF16Q,"\"UTF-16\""); sl@0: CONST_LIT8(KManual,"manual"); sl@0: CONST_LIT8(KBackground,"background"); sl@0: CONST_LIT8(KAuto,"auto"); sl@0: CONST_LIT8(KSynchronous,"synchronous"); sl@0: sl@0: //System database names sl@0: CONST_LIT16(KMainDb16, "main"); sl@0: CONST_LIT8(KMainDb8, "main"); sl@0: CONST_LIT8(KTempDb8, "temp"); sl@0: sl@0: //Setting isolation level SQL statements (zero-terminated strings) sl@0: CONST_LIT8(KReadUncommittedPragma, "PRAGMA read_uncommitted = True;\x0"); sl@0: CONST_LIT8(KSerializablePragma, "PRAGMA read_uncommitted = False;\x0"); sl@0: sl@0: //Format of the file name when sending file handles in it sl@0: CONST_LIT16(KFileHandleFmt, "|%d%08X%S%08X%S|\x0"); sl@0: const TUint KFileHandleSeparator = '|'; sl@0: sl@0: //SQlite Pragma Commands sl@0: CONST_LIT8(KAutoVacuum, "auto_vacuum"); sl@0: CONST_LIT8(KCacheSize, "cache_size"); sl@0: CONST_LIT8(KCaseSensitiveLike, "case_sensitive_like"); sl@0: CONST_LIT8(KCountChanges, "count_changes"); sl@0: CONST_LIT8(KDefaultCacheSize, "default_cache_size"); sl@0: CONST_LIT8(KEmptyResultCallbacks, "empty_result_callbacks"); sl@0: CONST_LIT8(KEncoding, "encoding"); sl@0: CONST_LIT8(KFullColumnNames, "full_column_names"); sl@0: CONST_LIT8(KFullfsync, "fullfsync"); sl@0: CONST_LIT8(KIncrementalVacuum, "incremental_vacuum"); sl@0: CONST_LIT8(KJournalMode, "journal_mode"); sl@0: CONST_LIT8(KJournalSizeLimit, "journal_size_limit"); sl@0: CONST_LIT8(KLegacyFileFormat, "legacy_file_format"); sl@0: CONST_LIT8(KLockingMode, "locking_mode"); sl@0: CONST_LIT8(KPageSize, "page_size"); sl@0: CONST_LIT8(KMaxPageCount, "max_page_count"); sl@0: CONST_LIT8(KReadUncommitted, "read_uncommitted"); sl@0: CONST_LIT8(KShortColumnNames, "short_column_names"); sl@0: CONST_LIT8(KSynchronousFlag, "synchronous"); sl@0: CONST_LIT8(KTempStore, "temp_store"); sl@0: CONST_LIT8(KTempStoreDirectory, "temp_store_directory"); sl@0: CONST_LIT8(KDatabaseList, "database_list"); sl@0: CONST_LIT8(KForeignKeyList, "foreign_key_list"); sl@0: CONST_LIT8(KFreelistCount, "freelist_count"); sl@0: CONST_LIT8(KIndexInfo, "index_info"); sl@0: CONST_LIT8(KIndexIist, "index_list"); sl@0: CONST_LIT8(KPageCount, "page_count"); sl@0: CONST_LIT8(KTableInfo, "table_info"); sl@0: CONST_LIT8(KSchemaVersion, "schema_version"); sl@0: CONST_LIT8(KUserVersion, "user_version"); sl@0: CONST_LIT8(KIntegrityCheck, "integrity_check"); sl@0: CONST_LIT8(KParserTrace, "parser_trace"); sl@0: CONST_LIT8(KVdbeTrace, "vdbe_trace"); sl@0: CONST_LIT8(KdbeListing, "vdbe_listing"); sl@0: sl@0: sl@0: #endif//__SQLSRVSTRINGS_H__