Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
Connection connection = DriverManager.getConnection("jdbc:sqlserver://localhost:1433;databaseName=AdventureWorks;integratedSecurity=true");
Factory create = new SQLServerFactory(connection);
System.out.println(create
.select(Employee.getFields())
.select(val("###"))
.select(Department.getFields())
.select(val("###"))
.select(Contact.getFields())