Exemplo n.º 1
0
 public static IEnumerable <object[]> AllOdbcConnections(string section) => new[] {
     new object[] { (IConnectionManager)SqlOdbcConnection.ConnectionManager(section) },
     new object[] { (IConnectionManager)AccessOdbcConnection.ConnectionManager(section) }
 };
Exemplo n.º 2
0
 public static IEnumerable <object[]> AllOdbcConnectionsExceptAccess(string section) => new[] {
     new object[] { (IConnectionManager)SqlOdbcConnection.ConnectionManager(section) },
     new object[] { (IConnectionManager)MySqlOdbcConnection.ConnectionManager(section) },
     new object[] { (IConnectionManager)PostgresOdbcConnection.ConnectionManager(section) }
 };