DataType for BLOB

  • Thread starter Thread starter C Glenn
  • Start date Start date
C

C Glenn

What DataType should I use for a field that is BLOB SUBTYPE TEXT on the
backend? I've tried String and Char. I'm getting a runtime error
telling me that the SourceColumn is a Char[].

Thanks.
 
I've tried this:

dtTasks.Columns.Add("Note", System.Type.GetType("System.CLOB", false,
true));

I've also tried this:

dtTasks.Columns.Add("Note", System.Type.GetType("System.BLOB", false,
true));

Both cases return: DataType must not be null.

Is there another way to go about this that I don't know about?

Try CLOB

T

C said:
What DataType should I use for a field that is BLOB SUBTYPE TEXT on
the backend? I've tried String and Char. I'm getting a runtime error
telling me that the SourceColumn is a Char[].

Thanks.
 
Back
Top