To the best of my knowledge, SQL Server 2005 managed stored procedures
are simply a way to implement stored procedures using managed code. They
do not accept as parameters or return as results any objects, and are
called from applications (and/or other stored procedures) exactly as any
standard stored procedure would be.

Jeremy Gray

-----Original Message-----
From: Ron Grabowski [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 19, 2005 5:51 AM
To: [email protected]
Subject: Re: Does ibatis supports SQL 2005 Managed procedures?

IBatisNet does not yet support managed procedures. Is that a feature
specific to version 2 of the .NET Framework? Have you used them before?
Are there other features similiar to managed procedures that you think
other developers would find helpful? 

Using normal ADO.NET, what would a code snippet look like to retrieve a
single object? Is it possible to return the object via a call on the
command object

 // ???
 Widget widget = (Widget)cmd.ExecuteScalar();

or must they be returned as OUTPUT parameters from the stored
procedure?

I think its safe to say that the development focus thus far has been on
released version of the .NET Framework rather than betas.

--- Emmanuele De Andreis <[EMAIL PROTECTED]> wrote:

> Does ibatis supports SQL 2005 Managed procedures?
> Is there any plan for add support if it is missing?
> 
> For a reference:
> http://www.devx.com/dotnet/Article/21286
> 
> Thanks
> 
> Manu
> 


Reply via email to