G
Guest
How do I copy the binary data (possibly longer than 8000 bytes) to a
DataTable? What is the syntax to add a column and add data to it like below?
DataTable.Columns.Add("MyBinaryField", ???); (What is the syntax for the 2nd
parameter)
DataRow dr = DataTable.NewRow();
dr["MyBianryField"] = data; (Is this correct if longer than 8000 bytes?)
DataTable? What is the syntax to add a column and add data to it like below?
DataTable.Columns.Add("MyBinaryField", ???); (What is the syntax for the 2nd
parameter)
DataRow dr = DataTable.NewRow();
dr["MyBianryField"] = data; (Is this correct if longer than 8000 bytes?)