i searched the web without much luck. i was wondering if anyone here
has had experience using any kind of a programmatic SQL builder
library/class. i would like to dynamically generate some of the
multitude of SQL strings that i currently simply write in as strings
in my code to pass on to JDBC or query beans which all use SQL.
so something like :
SQLQuery query = new SQLQuery();
query.setValue("employeeid", "as id");
query.setValue("name", "as name");
query.setValue("company", "as company");
query.setWhereEquals("company", "acme");
query.setOrderby("employeeid");
query.toString()
thanks for any info!
jae