Viewing 4 posts - 1 through 5 (of 5 total)
Thats true. we are planning to do that.
Thanks for your suggestion:)
February 23, 2009 at 12:39 am
Hi,
We got the solution. We changed our code in DataAccess Layer.Correct code is below.
Thanks for your help:)
public void AddParameter(DbCommand cmd, Database db)
{
...
February 22, 2009 at 2:55 am
Actually our data access layer is a generic one and many other forms from the presentation layer is using the same data access layer.So different forms will have different parameters...
February 21, 2009 at 4:23 am
This is our stored procedure
CREATE PROCEDURE [dbo].[usp_InsertProductBacklogDetails]
(
@UserStory varchar(150),
@Priority int,
@StoryPoints int,
@EstimatedSize int,
@PlannedSprint int,
@ClarityIndex decimal(2,1),
@status int
...
February 21, 2009 at 12:53 am
Viewing 4 posts - 1 through 5 (of 5 total)