Closed jakobbraun closed 4 years ago
the fluent programming pattern is not used consequently any more:
Designed was:
final Select select = StatementFactory.getInstance() .select() .field("fieldA", "tableA.fieldB", "tableB.*") .from() .table("schemaA.tableA") .limit(10);
Now it is: (see #64 )
final Select select = StatementFactory.getInstance() .select(); select.field("fieldA", "tableA.fieldB", "tableB.*") .from() .table("schemaA.tableA"); select.limit(10);
Closed with #73
the fluent programming pattern is not used consequently any more:
Designed was:
Now it is: (see #64 )