Board index » delphi » Problem with SQL Server 2000 stored procedure with Output Parameters
Arturo Martínez
![]() Delphi Developer |
Wed, 01 Jun 2005 05:38:54 GMT
Problem with SQL Server 2000 stored procedure with Output Parameters
Hi All,
I'm testing dbExpress in Delphi 7 to find out if it's the right choice to Now I run a stored procedure with output parameters but it's not working I run a stored procedure MyStoredProcedure which expects 3 parameters: 1. Run stored procedure MyStoredProcedure using dbExpress: Using SQL declare @P1 tinyint exec sp_prepexecrpc @username = 'pr This returns wrong results to my client application. Note that "exec 2. Run stored procedure MyStoredProcedure using BDE, and passing the same declare @P1 smallint This returns the right results. What can be wrong? Any ideas? Thank you for your help. |