Wonderful news,
Thanks coffeepot, I'll definately going to give a try once I get back to work.
I do have MSSQL as data provider in some of my projects. I quickly glaced the
API, I generally tend to have a lot of SQL queries in const strings that are
ready to be executed and they don't have extra parameters, I would benefit from
a simple helper than can create, execute and handle result of statement in one
line. Something like:
con.withStatement(sql_query_string, row):
handle a row
And even like this
con.withStatement(sql_query_string, args, row):
handle a row