Calling an extended stored procedure with output parameters
Posted: Sat 30 Jul 2005 09:11
Using SDAC, how can I call an extended stored procedure with output parameters? Thanks.
Ray Mond
Ray Mond
Discussion forums for open issues and questions concerning database tools, data access components and developer tools from Devart
https://forums.devart.com/
Code: Select all
DECLARE @txt varchar(33)
EXEC xP_getnetname @txt OUTPUT
select @txt
Code: Select all
EXEC xP_getnetname :txt OUTPUT