Re: [PHP] mssql_*() functions and stored procedures

2005-10-11 Thread Jochem Maas
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

[PHP] mssql_*() functions and stored procedures

2005-10-11 Thread Chris Boget
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