Cool, thanks.
I'm looking forward to the next release of SpringFramework.
Best Regards,
Mario
Type: Posts; User: SuperMario; Keyword(s):
Cool, thanks.
I'm looking forward to the next release of SpringFramework.
Best Regards,
Mario
Hello Juergen,
I noticed there is a new release 1.1.1 of springframework.
Is there a solution for my described problem in this release ?
In the changlog there is this text:
"JdbcTemplate uses...
In JdbcTemplate.java in class ListResultSetExtractor, method extractData, there is a for-loop, which fills the map. Do you think it would be a possible solution for my problem, if I replace the...
Thanks for your helpful responses.
I like to use queryForList, because it's so easy to use and the code is so small.
So, Juergen, if you commit any correction for this issue in queryForList then...
For information:
I use Oracle 9.2.0.1.0
And if I write this:
Object obj = firstRow.get("accountdate");
System.out.println("Classname: " + obj.getClass().getName());
Then it really prints out...
Does nobody has an idea ?
Hello,
I use the JdbcTemplate for executing SELECTs on my database.
JdbcTemplate jt = new JdbcTemplate(ds);
List values = jt.queryForList("SELECT accountdate FROM acount");
Map firstRow =...