[
http://issues.apache.org/jira/browse/IBATISNET-165?page=comments#action_12418077
]
Gilles Bayon commented on IBATISNET-165:
----------------------------------------
I don't think we need the attribute UseReturnValue whcih can be replace by
_statement.ResultClass != null ) &&
_sqlMap.TypeHandlerFactory.IsSimpleType (
_statement.ResultClass )
and so we have the code
else if (_statement is Procedure && (_statement.ResultClass != null) &&
_sqlMap.TypeHandlerFactory.IsSimpleType(_statement.ResultClass) )
{
IDataParameter returnValueParameter =
command.CreateParameter();
returnValueParameter.Direction =
ParameterDirection.ReturnValue;
command.Parameters.Add(returnValueParameter);
command.ExecuteNonQuery ( );
generatedKey = returnValueParameter.Value;
ITypeHandler typeHandler =
_sqlMap.TypeHandlerFactory.GetTypeHandler ( _statement.ResultClass );
generatedKey = typeHandler.GetDataBaseValue ( generatedKey,
_statement.ResultClass );
}
}
> Getting return value generatedKeys from stored procedures in inserts
> --------------------------------------------------------------------
>
> Key: IBATISNET-165
> URL: http://issues.apache.org/jira/browse/IBATISNET-165
> Project: iBatis for .NET
> Type: Improvement
> Components: DataMapper
> Versions: DataAccess 1.5
> Environment: .net framework 2.0
> Reporter: Oddur Magnusson
> Attachments: MappedStatement.cs.patch, category-procedureWithReturn.sql,
> complete.patch, procedure.cs.patch
>
> When calling a stored procedure that does a insert and returns the row
> idendity in a return statement, like
> CREATE PROCEDURE [dbo].[DoFoo] @foo int AS
> INSERT INTO Foos (foo) VALUES (@foo)
> RETURN @@IDENTITY
> there is no way of accessing the return value and returning it as the
> generatedKey
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira