Exemplo n.º 1
0
 public SQLServerGatherer(string connectionString)
 {
     this.Credentials = Parse(connectionString);
     this.SqlServer = new Data.SqlServer(connectionString);
 }
 public SQLServerGatherer(string connectionString)
 {
     this.Credentials = Parse(connectionString);
     this.SqlServer   = new Data.SqlServer(connectionString);
 }
Exemplo n.º 3
0
 public SQLServerGatherer(DatabaseCredentials credentials)
 {
     this.Credentials = credentials;
     this.SqlServer = new Data.SqlServer(this.Credentials.ToSqlServerConnectionString());
 }
 public SQLServerGatherer(DatabaseCredentials credentials)
 {
     this.Credentials = credentials;
     this.SqlServer   = new Data.SqlServer(this.Credentials.ToSqlServerConnectionString());
 }