sl@0
|
1 |
// Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Global strings, whic are declared once in this header file and used in the SQL server source files.
|
sl@0
|
15 |
// Make sure that __SQLSRV_STRINGS__ macro is defined only once in SqlSrvStrings.cpp file, before the
|
sl@0
|
16 |
// include of "SqlSrvStrings.h", which ensures that only one copy of the strings is included in the
|
sl@0
|
17 |
// executable server image.
|
sl@0
|
18 |
//
|
sl@0
|
19 |
//
|
sl@0
|
20 |
|
sl@0
|
21 |
#ifndef __SQLSRVSTRINGS_H__
|
sl@0
|
22 |
#define __SQLSRVSTRINGS_H__
|
sl@0
|
23 |
|
sl@0
|
24 |
#include <e32std.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
#ifdef __SQLSRV_STRINGS__
|
sl@0
|
27 |
#define CONST_LIT8(var, val) extern const TLitC8<sizeof(val)> var = {sizeof(val) - 1, val}
|
sl@0
|
28 |
#define CONST_LIT16(var, val) extern const TLitC16<sizeof(L##val)/2> var = {sizeof(L##val)/2 - 1, L##val}
|
sl@0
|
29 |
#define CONST_TTEXT(var, val) extern const TText var = val
|
sl@0
|
30 |
#else
|
sl@0
|
31 |
#define CONST_LIT8(var, val) extern const TLitC8<sizeof(val)> var
|
sl@0
|
32 |
#define CONST_LIT16(var, val) extern const TLitC16<sizeof(L##val)/2> var
|
sl@0
|
33 |
#define CONST_TTEXT(var, val) extern const TText var
|
sl@0
|
34 |
#endif
|
sl@0
|
35 |
|
sl@0
|
36 |
#ifdef _UNICODE
|
sl@0
|
37 |
#define CONST_LIT(var, val) CONST_LIT16(var, val)
|
sl@0
|
38 |
#else
|
sl@0
|
39 |
#define CONST_LIT(var, val) CONST_LIT8(var, val)
|
sl@0
|
40 |
#endif
|
sl@0
|
41 |
|
sl@0
|
42 |
//System table names
|
sl@0
|
43 |
//If you need to change the system tables name prefix, please check SqlSrvDbSysSettings.cpp file,
|
sl@0
|
44 |
//where this prefix is used in sql statements and modify the statements.
|
sl@0
|
45 |
CONST_LIT8(KSqlitePrefix8, "sqlite_");
|
sl@0
|
46 |
CONST_LIT8(KSystemPrefix8, "symbian_");
|
sl@0
|
47 |
CONST_LIT8(KMasterTable8, "sqlite_master");
|
sl@0
|
48 |
CONST_LIT8(KSecurityTable8, "symbian_security");
|
sl@0
|
49 |
CONST_LIT8(KSettingsTable8, "symbian_settings");
|
sl@0
|
50 |
|
sl@0
|
51 |
CONST_LIT16(KSqlitePrefix16, "sqlite_");
|
sl@0
|
52 |
CONST_LIT16(KSystemPrefix16, "symbian_");
|
sl@0
|
53 |
CONST_LIT16(KMasterTable16, "sqlite_master");
|
sl@0
|
54 |
CONST_LIT16(KSecurityTable16, "symbian_security");
|
sl@0
|
55 |
CONST_LIT16(KSettingsTable16, "symbian_settings");
|
sl@0
|
56 |
|
sl@0
|
57 |
// config consts
|
sl@0
|
58 |
#if defined SYSLIBS_TEST || defined SQL_SOFT_HEAP_LIMIT_TEST
|
sl@0
|
59 |
CONST_LIT16(KSqlSrvDefaultConfigFile, "c:\\test\\t_sqlserver.cfg");
|
sl@0
|
60 |
CONST_LIT16(KSqlSrvDbConfigFileFormat, "c:cfg*");
|
sl@0
|
61 |
#else
|
sl@0
|
62 |
CONST_LIT16(KSqlSrvDefaultConfigFile, "z:SqlServer.cfg");
|
sl@0
|
63 |
CONST_LIT16(KSqlSrvDbConfigFileFormat, "z:cfg*");
|
sl@0
|
64 |
#endif
|
sl@0
|
65 |
CONST_LIT8(KSoftHeapLimitKb,"soft_heap_limit_kb");
|
sl@0
|
66 |
CONST_LIT8(KCompactionMode,"compaction");
|
sl@0
|
67 |
CONST_LIT8(KFreePageThresholdKb,"free_space_threshold_kb");
|
sl@0
|
68 |
CONST_LIT8(KUTF8,"UTF-8");
|
sl@0
|
69 |
CONST_LIT8(KUTF8Q,"\"UTF-8\"");
|
sl@0
|
70 |
CONST_LIT8(KUTF16,"UTF-16");
|
sl@0
|
71 |
CONST_LIT8(KUTF16Q,"\"UTF-16\"");
|
sl@0
|
72 |
CONST_LIT8(KManual,"manual");
|
sl@0
|
73 |
CONST_LIT8(KBackground,"background");
|
sl@0
|
74 |
CONST_LIT8(KAuto,"auto");
|
sl@0
|
75 |
CONST_LIT8(KSynchronous,"synchronous");
|
sl@0
|
76 |
|
sl@0
|
77 |
//System database names
|
sl@0
|
78 |
CONST_LIT16(KMainDb16, "main");
|
sl@0
|
79 |
CONST_LIT8(KMainDb8, "main");
|
sl@0
|
80 |
CONST_LIT8(KTempDb8, "temp");
|
sl@0
|
81 |
|
sl@0
|
82 |
//Setting isolation level SQL statements (zero-terminated strings)
|
sl@0
|
83 |
CONST_LIT8(KReadUncommittedPragma, "PRAGMA read_uncommitted = True;\x0");
|
sl@0
|
84 |
CONST_LIT8(KSerializablePragma, "PRAGMA read_uncommitted = False;\x0");
|
sl@0
|
85 |
|
sl@0
|
86 |
//Format of the file name when sending file handles in it
|
sl@0
|
87 |
CONST_LIT16(KFileHandleFmt, "|%d%08X%S%08X%S|\x0");
|
sl@0
|
88 |
const TUint KFileHandleSeparator = '|';
|
sl@0
|
89 |
|
sl@0
|
90 |
//SQlite Pragma Commands
|
sl@0
|
91 |
CONST_LIT8(KAutoVacuum, "auto_vacuum");
|
sl@0
|
92 |
CONST_LIT8(KCacheSize, "cache_size");
|
sl@0
|
93 |
CONST_LIT8(KCaseSensitiveLike, "case_sensitive_like");
|
sl@0
|
94 |
CONST_LIT8(KCountChanges, "count_changes");
|
sl@0
|
95 |
CONST_LIT8(KDefaultCacheSize, "default_cache_size");
|
sl@0
|
96 |
CONST_LIT8(KEmptyResultCallbacks, "empty_result_callbacks");
|
sl@0
|
97 |
CONST_LIT8(KEncoding, "encoding");
|
sl@0
|
98 |
CONST_LIT8(KFullColumnNames, "full_column_names");
|
sl@0
|
99 |
CONST_LIT8(KFullfsync, "fullfsync");
|
sl@0
|
100 |
CONST_LIT8(KIncrementalVacuum, "incremental_vacuum");
|
sl@0
|
101 |
CONST_LIT8(KJournalMode, "journal_mode");
|
sl@0
|
102 |
CONST_LIT8(KJournalSizeLimit, "journal_size_limit");
|
sl@0
|
103 |
CONST_LIT8(KLegacyFileFormat, "legacy_file_format");
|
sl@0
|
104 |
CONST_LIT8(KLockingMode, "locking_mode");
|
sl@0
|
105 |
CONST_LIT8(KPageSize, "page_size");
|
sl@0
|
106 |
CONST_LIT8(KMaxPageCount, "max_page_count");
|
sl@0
|
107 |
CONST_LIT8(KReadUncommitted, "read_uncommitted");
|
sl@0
|
108 |
CONST_LIT8(KShortColumnNames, "short_column_names");
|
sl@0
|
109 |
CONST_LIT8(KSynchronousFlag, "synchronous");
|
sl@0
|
110 |
CONST_LIT8(KTempStore, "temp_store");
|
sl@0
|
111 |
CONST_LIT8(KTempStoreDirectory, "temp_store_directory");
|
sl@0
|
112 |
CONST_LIT8(KDatabaseList, "database_list");
|
sl@0
|
113 |
CONST_LIT8(KForeignKeyList, "foreign_key_list");
|
sl@0
|
114 |
CONST_LIT8(KFreelistCount, "freelist_count");
|
sl@0
|
115 |
CONST_LIT8(KIndexInfo, "index_info");
|
sl@0
|
116 |
CONST_LIT8(KIndexIist, "index_list");
|
sl@0
|
117 |
CONST_LIT8(KPageCount, "page_count");
|
sl@0
|
118 |
CONST_LIT8(KTableInfo, "table_info");
|
sl@0
|
119 |
CONST_LIT8(KSchemaVersion, "schema_version");
|
sl@0
|
120 |
CONST_LIT8(KUserVersion, "user_version");
|
sl@0
|
121 |
CONST_LIT8(KIntegrityCheck, "integrity_check");
|
sl@0
|
122 |
CONST_LIT8(KParserTrace, "parser_trace");
|
sl@0
|
123 |
CONST_LIT8(KVdbeTrace, "vdbe_trace");
|
sl@0
|
124 |
CONST_LIT8(KdbeListing, "vdbe_listing");
|
sl@0
|
125 |
|
sl@0
|
126 |
|
sl@0
|
127 |
#endif//__SQLSRVSTRINGS_H__
|