Chris Boget wrote:
Looking through the documentation, I see that I can use
mssql_init()
mssql_bind()
mssql_execute()
to execute those stored procedures that have parameters.
But what about those SPs which just return a value? If I
have the following SP
CREATE PROCEDURE MySP
AS
DECLARE @resul
Looking through the documentation, I see that I can use
mssql_init()
mssql_bind()
mssql_execute()
to execute those stored procedures that have parameters.
But what about those SPs which just return a value? If I
have the following SP
CREATE PROCEDURE MySP
AS
DECLARE @resultCode int
SELECT @r
2 matches
Mail list logo