ms-sql OUTPUT equivalent

Started by Clark Allanalmost 21 years ago2 messagesgeneral
Jump to latest
#1Clark Allan
clarka@gmail.com

Is there an equivelent to the OUTPUT parameter in MS-SQL?
here is an example:
----------------------------------------
CREATE PROCEDURE GetPagedList
(
@CurrentPage tinyint,
@PageSize tinyint,
@TotalRecords int OUTPUT,
)
AS
Set NoCount On
-- ...some code here...

-- Return the total number of records available as an output parameter
Select @TotalRecords = Count(*) From tblemp

GO
---------------------------------------
I am using the Npgsql data provider in a .net app, and have noticed you can
set the Parameter direction to be output
eg "NpgsqlParameter.Direction = ParameterDirection.Output"
Is this just a case of npgsql getting ahead of pg?

Thanks
Clark

#2Doug McNaught
doug@mcnaught.org
In reply to: Clark Allan (#1)
Re: ms-sql OUTPUT equivalent

Clark Allan <clarka@gmail.com> writes:

Is there an equivelent to the OUTPUT parameter in MS-SQL?

Not in the current release, but the upcoming 8.1 release will have it.

-Doug