Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1310
Resources are not saved to AllProperties.
posted

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

Parents Reply Children
No Data