Blobs in a DataTable

  • Thread starter Thread starter Rex the Strange
  • Start date Start date
R

Rex the Strange

Does anyone know, offhand, how to distinguish between a "blob" type
field and a "long raw" type field from an Oracle database? The
DataTable reports them both as being type Byte[] (Byte Array).

tia,

rts
 
Without additional info you can't since both Oracle data types are mapped
into byte[] as you see.
But why would you need? This kind of mapping usually belongs to a data
adapter.
 
Back
Top