1 |
william |
4 |
//------------------------------------------------------------------------------ |
2 |
|
|
// <auto-generated> |
3 |
|
|
// This code was generated by a tool. |
4 |
william |
11 |
// Runtime Version:2.0.50727.5456 |
5 |
william |
4 |
// |
6 |
|
|
// Changes to this file may cause incorrect behavior and will be lost if |
7 |
|
|
// the code is regenerated. |
8 |
|
|
// </auto-generated> |
9 |
|
|
//------------------------------------------------------------------------------ |
10 |
|
|
|
11 |
|
|
namespace AnywhereTS { |
12 |
|
|
using System; |
13 |
|
|
|
14 |
|
|
|
15 |
|
|
/// <summary> |
16 |
|
|
/// A strongly-typed resource class, for looking up localized strings, etc. |
17 |
|
|
/// </summary> |
18 |
|
|
// This class was auto-generated by the StronglyTypedResourceBuilder |
19 |
|
|
// class via a tool like ResGen or Visual Studio. |
20 |
|
|
// To add or remove a member, edit your .ResX file then rerun ResGen |
21 |
|
|
// with the /str option, or rebuild your VS project. |
22 |
|
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] |
23 |
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
24 |
|
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] |
25 |
william |
76 |
internal class SQLServerResources { |
26 |
william |
4 |
|
27 |
|
|
private static global::System.Resources.ResourceManager resourceMan; |
28 |
|
|
|
29 |
|
|
private static global::System.Globalization.CultureInfo resourceCulture; |
30 |
|
|
|
31 |
|
|
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] |
32 |
william |
76 |
internal SQLServerResources() { |
33 |
william |
4 |
} |
34 |
|
|
|
35 |
|
|
/// <summary> |
36 |
|
|
/// Returns the cached ResourceManager instance used by this class. |
37 |
|
|
/// </summary> |
38 |
|
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] |
39 |
|
|
internal static global::System.Resources.ResourceManager ResourceManager { |
40 |
|
|
get { |
41 |
|
|
if (object.ReferenceEquals(resourceMan, null)) { |
42 |
william |
76 |
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AnywhereTS.SQLServerResources", typeof(SQLServerResources).Assembly); |
43 |
william |
4 |
resourceMan = temp; |
44 |
|
|
} |
45 |
|
|
return resourceMan; |
46 |
|
|
} |
47 |
|
|
} |
48 |
|
|
|
49 |
|
|
/// <summary> |
50 |
|
|
/// Overrides the current thread's CurrentUICulture property for all |
51 |
|
|
/// resource lookups using this strongly typed resource class. |
52 |
|
|
/// </summary> |
53 |
|
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] |
54 |
|
|
internal static global::System.Globalization.CultureInfo Culture { |
55 |
|
|
get { |
56 |
|
|
return resourceCulture; |
57 |
|
|
} |
58 |
|
|
set { |
59 |
|
|
resourceCulture = value; |
60 |
|
|
} |
61 |
|
|
} |
62 |
|
|
|
63 |
|
|
/// <summary> |
64 |
|
|
/// Looks up a localized string similar to -- This is the Anywhere TS main database creation script |
65 |
|
|
///--[Datadir] will be replaced runtime with the actual database directory, as chosen on the ATS config form. |
66 |
|
|
///USE [master] |
67 |
|
|
///GO |
68 |
|
|
///--CREATE DATABASE [AnywhereTS] ON PRIMARY |
69 |
|
|
///--( NAME = N'ats', FILENAME = N'[DataDir]\ats.mdf' , SIZE = 1536KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB ) |
70 |
|
|
///-- LOG ON |
71 |
|
|
///--( NAME = N'ats_log', FILENAME = N'[DataDir]\ats_log.ldf' , SIZE = 768KB , MAXSIZE = UNLIMITED, FILEGROWTH = 10%) |
72 |
|
|
///CREATE DATABASE [AnywhereTS] ON PRIMARY |
73 |
|
|
/// [rest of string was truncated]";. |
74 |
|
|
/// </summary> |
75 |
|
|
internal static string CreateDatabase { |
76 |
|
|
get { |
77 |
william |
76 |
return ResourceManager.GetString("CreateDatabase", resourceCulture).Replace("AnywhereTS",ATSGlobals.strDatabaseName); |
78 |
william |
4 |
} |
79 |
|
|
} |
80 |
|
|
|
81 |
|
|
/// <summary> |
82 |
william |
22 |
/// Looks up a localized string similar to USE [master] |
83 |
|
|
///GO |
84 |
|
|
///--EXEC dbo.sp_dbcmptlevel @dbname=N'AnywhereTS', @new_cmptlevel=90 |
85 |
|
|
///--GO |
86 |
|
|
///IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')) |
87 |
|
|
///begin |
88 |
|
|
///EXEC [AnywhereTS].[dbo].[sp_fulltext_database] @action = 'enable' |
89 |
|
|
///end |
90 |
|
|
///GO |
91 |
|
|
///ALTER DATABASE [AnywhereTS] SET ANSI_NULL_DEFAULT OFF |
92 |
|
|
///GO |
93 |
|
|
///ALTER DATABASE [AnywhereTS] SET ANSI_NULLS OFF |
94 |
|
|
///GO |
95 |
|
|
///ALTER DATABASE [AnywhereTS] SET AUTO_CLOSE ON |
96 |
|
|
///GO |
97 |
|
|
///ALTER DATABASE [AnywhereTS] SET MULTI_USER |
98 |
|
|
///GO |
99 |
|
|
///USE [AnywhereTS] |
100 |
|
|
///GO |
101 |
|
|
///SET ANSI_NULLS ON |
102 |
|
|
///GO |
103 |
|
|
///SET QUOTED_IDENTIFIE [rest of string was truncated]";. |
104 |
|
|
/// </summary> |
105 |
|
|
internal static string CreateTables { |
106 |
|
|
get { |
107 |
william |
76 |
return ResourceManager.GetString("CreateTables", resourceCulture).Replace("AnywhereTS", ATSGlobals.strDatabaseName); |
108 |
william |
22 |
} |
109 |
|
|
} |
110 |
|
|
|
111 |
|
|
/// <summary> |
112 |
william |
4 |
/// Looks up a localized string similar to -- This is the Anywhere TS main database update script from version 1.0.0.0 to 1.0.0.1 |
113 |
|
|
///USE [AnywhereTS] |
114 |
|
|
///GO |
115 |
|
|
///-- The AnywhereTS clients. Used by AnywhereTS and Control panel |
116 |
|
|
///ALTER TABLE [dbo].[Client] ADD |
117 |
|
|
/// [DailyReboot] [bit] NULL, |
118 |
|
|
/// [KeyboardMap] [nvarchar](12) NULL, |
119 |
|
|
/// [TimeZone] [nvarchar](60) NULL, |
120 |
|
|
/// [RedirectCom1] [bit] NULL, |
121 |
|
|
/// [RedirectCom2] [bit] NULL, |
122 |
|
|
/// [UsbDrive] [int] NULL, |
123 |
|
|
/// [UsbDriveName] [nvarchar](20) NULL |
124 |
|
|
///GO |
125 |
|
|
///UPDATE [dbo].[Client] set [DailyReboot]=1 |
126 |
|
|
///UPDATE [dbo].[Client] set [KeyboardMap [rest of string was truncated]";. |
127 |
|
|
/// </summary> |
128 |
|
|
internal static string UpdateDatabase1 { |
129 |
|
|
get { |
130 |
william |
76 |
return ResourceManager.GetString("UpdateDatabase1", resourceCulture).Replace("AnywhereTS", ATSGlobals.strDatabaseName); |
131 |
william |
4 |
} |
132 |
|
|
} |
133 |
|
|
|
134 |
|
|
/// <summary> |
135 |
|
|
/// Looks up a localized string similar to -- This is the Anywhere TS main database update script from version 1.0.0.1 to 1.0.0.2 (ATS 3.0) |
136 |
|
|
///USE [AnywhereTS] |
137 |
|
|
///GO |
138 |
|
|
///-- The AnywhereTS clients. Used by AnywhereTS and Control panel |
139 |
|
|
///ALTER TABLE [dbo].[Client] ADD |
140 |
|
|
/// [ServerPort] [int] NULL, |
141 |
|
|
/// [NumLock] [bit] NULL, |
142 |
|
|
/// [Created] [datetime] NULL CONSTRAINT [DF_Client_Created] DEFAULT (getdate()), |
143 |
|
|
/// [Modified] [datetime] NULL CONSTRAINT [DF_Client_Modified] DEFAULT (getdate()), |
144 |
|
|
/// [IcaApplicationSet] [nvarchar](200) NULL, |
145 |
|
|
/// [IcaServer] [nvarchar](200) NULL, |
146 |
|
|
/// [rest of string was truncated]";. |
147 |
|
|
/// </summary> |
148 |
|
|
internal static string UpdateDatabase2 { |
149 |
|
|
get { |
150 |
william |
76 |
return ResourceManager.GetString("UpdateDatabase2", resourceCulture).Replace("AnywhereTS", ATSGlobals.strDatabaseName); |
151 |
william |
4 |
} |
152 |
|
|
} |
153 |
|
|
|
154 |
|
|
/// <summary> |
155 |
|
|
/// Looks up a localized string similar to -- This is the Anywhere TS main database update script from version 1.0.0.2 to 1.0.0.3 (ATS 3.2) |
156 |
|
|
///USE [AnywhereTS] |
157 |
|
|
///GO |
158 |
|
|
///-- The AnywhereTS client images. |
159 |
|
|
///ALTER TABLE [dbo].[Image] ADD |
160 |
|
|
/// [Debug] [int] NULL, |
161 |
|
|
/// [BootPackage] [int] NULL, |
162 |
|
|
/// [BootPictureWidth] [int] NULL, |
163 |
|
|
/// [BootPictureHeight] [int] NULL, |
164 |
|
|
/// [BootPictureProgressBar] [int] NULL, |
165 |
|
|
/// [BootPicturePng] [image] NULL |
166 |
|
|
///GO |
167 |
|
|
///UPDATE [dbo].[Image] set [Debug] = 0 |
168 |
|
|
///UPDATE [dbo].[Image] set [BootPackage] = 1 |
169 |
|
|
///UPDATE [dbo].[Image] set [BootPictureWidth] = 1024 |
170 |
|
|
/// [rest of string was truncated]";. |
171 |
|
|
/// </summary> |
172 |
|
|
internal static string UpdateDatabase3 { |
173 |
|
|
get { |
174 |
william |
76 |
return ResourceManager.GetString("UpdateDatabase3", resourceCulture).Replace("AnywhereTS", ATSGlobals.strDatabaseName); |
175 |
william |
4 |
} |
176 |
|
|
} |
177 |
|
|
|
178 |
|
|
/// <summary> |
179 |
|
|
/// Looks up a localized string similar to -- This is the Anywhere TS main database update script from version 1.0.0.3 to 1.0.0.4 (ATS 3.3) |
180 |
|
|
///USE [AnywhereTS] |
181 |
|
|
///GO |
182 |
|
|
///-- The AnywhereTS client images. |
183 |
|
|
///ALTER TABLE [dbo].[Image] ADD |
184 |
|
|
/// [BootMedia] [int] NULL, |
185 |
|
|
///GO |
186 |
|
|
///UPDATE [dbo].[Image] set [BootMedia] = 0 |
187 |
|
|
///GO |
188 |
|
|
///UPDATE [dbo].[AppInfo] set Value='1.0.0.4' where |
189 |
|
|
///Property='Version' |
190 |
|
|
///GO |
191 |
|
|
///. |
192 |
|
|
/// </summary> |
193 |
|
|
internal static string UpdateDatabase4 { |
194 |
|
|
get { |
195 |
william |
76 |
return ResourceManager.GetString("UpdateDatabase4", resourceCulture).Replace("AnywhereTS", ATSGlobals.strDatabaseName); |
196 |
william |
4 |
} |
197 |
|
|
} |
198 |
|
|
} |
199 |
|
|
} |