I'm facing following issue:
There will be several prepared SQL statements where the WHERE-clause contains defined contraints in which the values will be dynamic based on user input.
In addition there will be some SQL statements required that might end up to be pretty complex but the result (SELECT-clause) is pretty straight forward.
As far as I understand iBatis would fit these requirements.
Now what happens in a scenario where the user (through a UI) would influence the complete query construction. A prepared statement can't do it as the whole WHERE clause is dynamic, we might have aggregation clauses, sub-selects built in SQL functions.
In that case - would you still go with iBatis or do some custom development?
