Create Dataset with a Binary Field?

  • Thread starter Thread starter Alejandro K.
  • Start date Start date
A

Alejandro K.

Hi, i got the following question, what will be the correct type when i
create a Column in a datatable to store Binary Information??

if i do not set the datatype it will set it to be a string...

dim dt as New Datatable
with dt.columns
.add("BinaryColumn", ?????????? ) ' What datatype???
end with

Thanks.
Alex.
 
Back
Top