Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL Return Code retrieval with SQLEXEC
Message
From
07/09/2005 04:14:43
Rodney Eales
Black Seas Information Technologies
Johannesburg, South Africa
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
SQL Return Code retrieval with SQLEXEC
Miscellaneous
Thread ID:
01047272
Message ID:
01047272
Views:
60
I am having a problem retrieving a return value from a stored procedure with
SQLEXEC.

How can I retrieve the return value ?

Many Thanks



The stored proc is as follows:

create procedure [dbo]._bspNextAuditNo
with encryption
as

set nocount on

update Entities
set
DblSpare1 = IsNull(DblSpare1, 0) + 1

declare @NextAuditNo int
set @NextAuditNo = (select top 1 DblSpare1 from Entities)
return @NextAuditNo
Next
Reply
Map
View

Click here to load this message in the networking platform