Пример #1
0
 public LogManager(TypeOfDatabase DBType, string Conn) : base(DBType, Conn)
 {
     this.DataStructure = new Swordfish_v2_Core.CoreManagers.DataStructure();
     this.IsReady       = false;
     this.Conn          = "";
     this.CurSQLFactory = null;
     this.DBType        = TypeOfDatabase.MSSQL;
     this.ErrMsg        = "";
     this.DBType        = DBType;
     this.Conn          = Conn;
 }
Пример #2
0
 public LogManager(SessionConfig PrivateConfig) : base(PrivateConfig)
 {
     this.DataStructure = new Swordfish_v2_Core.CoreManagers.DataStructure();
     this.IsReady       = false;
     this.Conn          = "";
     this.CurSQLFactory = null;
     this.DBType        = TypeOfDatabase.MSSQL;
     this.ErrMsg        = "";
     this.DBType        = PrivateConfig.DatabaseType;
     this.Conn          = PrivateConfig.DatabaseConnectionString;
 }