Hi, I need to create a blob to upload info to an external app.
I am using CSV Buffer to create base data to upload which is pretty simple and cool.
Now I am facing a problem that CSVBuffer table "Value" field has a maximum lenght of 250 chars.
This works fine for most of the fields I need, but I am willing to create a very large field (to store a json stream) and this 250 chars limit makes it impossible.
I am thinking in extending table CSV Buffer with a "VALUE2" field up to 2048 chars (I think this is the limit) but I am not sure this will work and I am not sure how to mod CSVBuffer functions in order to deal with this new fields.
XMLPORT is not an option (too many and variable fields in structure I need to upload).