Hello
In my application resources are not saved in the database from the ganttview.
Task table structure is described below
CREATE TABLE [dbo].[dbTasks]( [TaskID] [uniqueidentifier] NOT NULL, [ProjectKey] [int] NULL, [TaskName] [nvarchar](50) NULL, [TaskStartTime] [datetime] NULL, [TaskDuration] [timestamp] NULL, [ParentTaskID] [uniqueidentifier] NULL, [TaskPercentComplete] [int] NULL, [AllProperties] [varbinary](max) NULL, [Milestone] [bit] NULL, [Resources] [nvarchar](max) NULL, [TaskDuration3] [nvarchar](50) NULL, CONSTRAINT [PK_dbTasks_1] PRIMARY KEY CLUSTERED ( [TaskID] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY]
Looking forward for the reply.
Regards
jeni
Hello Jeni,
Is it still not working? Is this related with some other older existing issue of yours? Could you please send me an example project which reproduces the issue so I could examine it?
Thank you in advance!
Hello jeni,
Thank you for your patience!
How are you trying to save these resources? Did you try with dataadapter and the Update() method?