In my C# code i am calling my Stored Proc using 3 params(2 are input type & one is out param)
the two input params are int32 type and out param is String type in C#.
In My Stored Proc recieving three params as (SQLSERVER)number(10),number(10),varchar
(10).
this stroed procedure returns one varchar value version number like ("1.0" or "3.1")
when i am executing this SP in SQLSERVER its returns value correctly("1.0" or "3.1").
But the Same SP returns always null value to the C# code.Really i am amazing....
Member
671 Points
462 Posts
problem with the Stored Procedure..
Jun 27, 2005 09:00 AM|ramana123|LINK
the two input params are int32 type and out param is String type in C#.
In My Stored Proc recieving three params as (SQLSERVER)number(10),number(10),varchar
(10).
this stroed procedure returns one varchar value version number like ("1.0" or "3.1")
when i am executing this SP in SQLSERVER its returns value correctly("1.0" or "3.1").
But the Same SP returns always null value to the C# code.Really i am amazing....
can tell me the problem where it is actually..
/Ram/