- Timestamp:
- 08/29/18 09:29:06 (6 years ago)
- Location:
- branches/2839_HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2839_HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3/SQL Scripts/Initialize Hive Database.sql
r15737 r16091 17 17 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 18 18 */ 19 USE [HeuristicLab.Hive-3. 3]19 USE [HeuristicLab.Hive-3.4] 20 20 21 21 EXEC sp_configure filestream_access_level, 2 -
branches/2839_HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3/SQL Scripts/Prepare Hive Database.sql
r15978 r16091 19 19 20 20 /* this script is supposed to be executed after the plain DB is generated by the linq-to-sql schema */ 21 USE [HeuristicLab.Hive-3. 3]21 USE [HeuristicLab.Hive-3.4] 22 22 23 23 ALTER TABLE [dbo].[AssignedProjectResource] DROP CONSTRAINT [Project_AssignedProjectResource] -
branches/2839_HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3/Settings.Designer.cs
r14748 r16091 13 13 14 14 [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "1 4.0.0.0")]15 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.8.0.0")] 16 16 public sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 17 … … 21 21 get { 22 22 return defaultInstance; 23 }24 }25 26 [global::System.Configuration.ApplicationScopedSettingAttribute()]27 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]28 [global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.ConnectionString)]29 [global::System.Configuration.DefaultSettingValueAttribute("Data Source=.\\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Hi" +30 "ve-3.3")]31 public string HeuristicLab_Hive_LinqConnectionString {32 get {33 return ((string)(this["HeuristicLab_Hive_LinqConnectionString"]));34 23 } 35 24 } … … 52 41 } 53 42 } 43 44 [global::System.Configuration.ApplicationScopedSettingAttribute()] 45 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 46 [global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.ConnectionString)] 47 [global::System.Configuration.DefaultSettingValueAttribute("Data Source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Hive-" + 48 "3.4")] 49 public string HeuristicLab_Hive_LinqConnectionString { 50 get { 51 return ((string)(this["HeuristicLab_Hive_LinqConnectionString"])); 52 } 53 } 54 54 } 55 55 } -
branches/2839_HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3/Settings.settings
r14748 r16091 3 3 <Profiles /> 4 4 <Settings> 5 <Setting Name="HeuristicLab_Hive_LinqConnectionString" Type="(Connection string)" Scope="Application">6 <DesignTimeValue Profile="(Default)"><?xml version="1.0" encoding="utf-16"?>7 <SerializableConnectionString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">8 <ConnectionString>Data Source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Hive-3.3</ConnectionString>9 <ProviderName>System.Data.SqlClient</ProviderName>10 </SerializableConnectionString></DesignTimeValue>11 <Value Profile="(Default)">Data Source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Hive-3.3</Value>12 </Setting>13 5 <Setting Name="LongRunningDatabaseCommandTimeout" Type="System.TimeSpan" Scope="Application"> 14 6 <Value Profile="(Default)">00:05:00</Value> … … 17 9 <Value Profile="(Default)">HL.Hive</Value> 18 10 </Setting> 11 <Setting Name="HeuristicLab_Hive_LinqConnectionString" Type="(Connection string)" Scope="Application"> 12 <DesignTimeValue Profile="(Default)"><?xml version="1.0" encoding="utf-16"?> 13 <SerializableConnectionString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> 14 <ConnectionString>Data Source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Hive-3.4</ConnectionString> 15 </SerializableConnectionString></DesignTimeValue> 16 <Value Profile="(Default)">Data Source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Hive-3.4</Value> 17 </Setting> 19 18 </Settings> 20 19 </SettingsFile> -
branches/2839_HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3/app.config
r16050 r16091 1 1 <?xml version="1.0" encoding="utf-8"?> 2 2 <configuration> 3 <configSections> 4 </configSections> 3 5 <connectionStrings> 4 <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" connectionString="Data Source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Hive-3.3" /> 6 <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" 7 connectionString="Data Source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Hive-3.4" /> 5 8 </connectionStrings> 6 9
Note: See TracChangeset
for help on using the changeset viewer.