stazz / java-sql-generator

A framework to generate syntactically correct SQL statements in a typesafe, easy, and uniform way (without StringBuilders).
49 stars 28 forks source link

Add selectAll to SimpleQueryBuilder #8

Closed stazz closed 12 years ago

stazz commented 13 years ago

Right now, in order to select all columns, one has to do 'select("*")' in the SimpleQueryBuilder. The builder should be extended with "selectAll()" method, which marks that the query should select all columns, without the need of using string literals.

stazz commented 12 years ago

Added as "selectAllColumns()" to SimpleQueryBuilder.