Hello,
I have certian code which is getting multiple resultsets using a callable statements.. I would like to chnage that using Spring Framework... Could anyone help me out with a small example.....
Type: Posts; User: spring; Keyword(s):
Hello,
I have certian code which is getting multiple resultsets using a callable statements.. I would like to chnage that using Spring Framework... Could anyone help me out with a small example.....
TransactionTemplate tt = new TransactionTemplate();
tt.execute(new TransactionCallbackWithoutResult()
{
protected void doInTransactionWithoutResult(TransactionStatus status)
{
...
Thanks for the reply. But I was looking for something with plain JDBC and Spring. Could someone post an example.
Thank you
Hi,
I am new to the spring framework. I am trying to modify the code to use the spring framework.
The original code is
----------------------------------------
Connection conn;...
Thank you Sandro... It cleared my doubts
Hi,
I am kind of new to Spring framework.. I am trying to modify the code which is using jdbc now..
i am trying to modify the code to do it in the Spring Framework manner.
below is the code i...