E
Eric
I'm copying the content from one DataTable to another. Both tables have a
SQL column of type VarBinary.
The data is actually copied this way.
DataRow[Column] = DataRow[Column];
Would this method cause a problem with VarBinary data types?
The problem I'm seeing is that the data seems to be duplicated.
So, if the both rows contained the value "1 2 3" after the copy I'm seeing a
value of "1 1 2 2 3 3" in the row where the data was copied to.
Any thoughts ideas are appreciated.
SQL column of type VarBinary.
The data is actually copied this way.
DataRow[Column] = DataRow[Column];
Would this method cause a problem with VarBinary data types?
The problem I'm seeing is that the data seems to be duplicated.
So, if the both rows contained the value "1 2 3" after the copy I'm seeing a
value of "1 1 2 2 3 3" in the row where the data was copied to.
Any thoughts ideas are appreciated.