public LLDBA(string server, ODBCMODIFIERS modifiers, DATABASETYPES types)
     : this()
 {
     this.setODBCModifiers(modifiers);
     this.svrinfo._server = server;
     this.svrinfo._dbtype = types;
 }
 public LLDBA(string server, string username, string password, string database, DATABASETYPES dbtype, bool autoconnect)
     : this(server, username, password)
 {
     //this.Open(database);
     this.svrinfo._database = database;
 }
 public LLDBA(string databasefile, DATABASETYPES dbtype, string password)
 {
     this.svrinfo._dbtype = dbtype;
     this.svrinfo._database = databasefile;
     this.svrinfo._password = password;
 }
 public LLDBA(string databasefile, DATABASETYPES dbtype)
 {
     this.svrinfo._dbtype = dbtype;
     this.svrinfo._database = databasefile;
 }
 public LLDBA(string server, string username, string password, DATABASETYPES dbtype)
     : this(server, username, password)
 {
     this.svrinfo._dbtype = dbtype;
 }
 public LLDBA(string server, string username, string password, string database, DATABASETYPES dbtype)
     : this(server, username, password, dbtype)
 {
     //Open(database);
     this.svrinfo._database = database;
 }