Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data/Data/Generic
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv27700/Generic
Modified Files:
AdoTemplate.cs
Log Message:
SPRNET-749 - AdoTempate's QueryCallback did not property extract return or output values from stored procedure.
SPRNET-746 - StoredProcedure class doesn't return sproc return value in result dictionary (changed return value key to be "RETURN_VALUE")
Index: AdoTemplate.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data/Data/Generic/AdoTemplate.cs,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** AdoTemplate.cs 6 Aug 2007 20:13:39 -0000 1.14
--- AdoTemplate.cs 11 Oct 2007 04:41:00 -0000 1.15
***************
*** 1051,1056 ****
returnValue = resultSetExtractorDelegate(reader);
}
-
- ParameterUtils.CopyParameters(parameters, command);
return returnValue;
}
--- 1051,1054 ----
***************
*** 1058,1061 ****
--- 1056,1060 ----
{
AdoUtils.CloseReader(reader);
+ ParameterUtils.CopyParameters(parameters, command);
}
}
|