Example #1
0
 public static IEnumerable <object[]> AllOdbcConnections(string section) => new[] {
     new object[] { (IConnectionManager)SqlOdbcConnection.ConnectionManager(section) },
     new object[] { (IConnectionManager)AccessOdbcConnection.ConnectionManager(section) }
 };
Example #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) }
 };