I am passing SSIS variables from C# code and getting it in SSIS package execute sql task
and SQL query is like below,
insert into Table values(@FileProcessStatusId,@FileTypeId,@FileName,@SharePath,@UploadedBy,@UploadedDate,@Error)
in the above query few values are string and int.
the task is executing successfully but the value stored in table is only 2 char. i don't know what went wrong. Any help.