Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/14/09 16:05:26 (15 years ago)
Author:
svonolfe
Message:

Added execution engine facade (#465)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/DBSettings.cs

    r1102 r1120  
    2727namespace HeuristicLab.Hive.Server.ADODataAccess.Properties {
    2828
    29   internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
     29  internal sealed class Settings : global::System.Configuration.ApplicationSettingsBase {
    3030
    3131    private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
     
    3737    }
    3838
    39   /*  private static String pw = "hive";
     39    private static String pw = "hive";
    4040    private static String un = "hive";
    4141    private static String address = "10.22.20.84";
    42     private static String catalog = "HiveServer"; */
     42    private static String catalog = "HiveServer";
    4343
    4444    public static String GetConnString(String adress, String catalog, String un, String pw) {
     
    4747    }
    4848
     49    private static string connString =
     50      GetConnString(address, catalog, un, pw);
     51
    4952    [global::System.Configuration.ApplicationScopedSettingAttribute()]
    5053    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    5154    [global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.ConnectionString)]
    52     [global::System.Configuration.DefaultSettingValueAttribute("Data Source=10.22.20.84;Initial Catalog=HiveServer;MultipleActiveResultSets=True;" +
    53         "Persist Security Info=True;User ID=hive;Password=hive")]
    5455    public string HiveServerConnectionString {
    5556      get {
    56         return ((string)(this["HiveServerConnectionString"]));
     57        return connString;
    5758      }
    5859
    5960      private set {
    60         this["HiveServerConnectionString"] = value;
     61        connString = value;
    6162      }
    6263    }
Note: See TracChangeset for help on using the changeset viewer.