Any comments are welcome!
Link to Google Doc with the specs:
http://docs.google.com/View?docid=d36kv8n_32g9zj7pdd
Quick teaser:
String sql = """
SELECT col1, col2, col3
FROM Table1
WHERE col1 = 'Test'
AND col2 = ?
ORDER BY col1""";
Home of the Java Builders
String sql = """
SELECT col1, col2, col3
FROM Table1
WHERE col1 = 'Test'
AND col2 = ?
ORDER BY col1""";