So I have a column in my SSIS Script Called Data which is of type BlobColumn
I want to assign this column to a string value.
I do the following:
Row.Data = "MyString";
but I get the following error:
Cannot implicitly convert type 'string' to Microsoft.SqlServer.Dts.Pipeline.BlobColumn
So how do I assign a BlobColumn to a String value?