use of com.beanexplorer.enterprise.metadata.sql.SqlModelReader in project be5 by DevelopmentOnTheEdge.
the class TestMain method testSqlDatabase.
public static StatContext testSqlDatabase(String name, String connectionURL, FailData failedQueries) throws IOException, ExtendedSqlException, SQLException, ProcessInterruptedException {
BeSqlExecutor executor = new BeSqlExecutor(connectionURL);
SqlModelReader reader = new SqlModelReader(executor, SqlModelReader.READ_META);
Project project = reader.readProject(name);
return testProject(project, failedQueries);
}
Aggregations