Hello,
Our business has an old database table which stores/contains files using VARBINARY(MAX) as the datatype. It is my understanding that this datatype is not supported in K2 Five and thus I cannot create a SmartObject on this table and display these files using a SmartForm.
The goal is to somehow migrate these files out of the current database table, and upload them into a different table in the format that K2 recognizes. Which, from a DB perspective using VARCHAR(MAX) as the datatype, looks something like this -
<file><name>NameOfFile.pdf</name><content>iVBORKh.….</content></file>
My question is….what is the best approach to achieve this objective? Can .NET code we written to somehow cycle through these old DB records/files and upload them into our existing table via a K2 API? Or even call the existing table’s own SmartObject from .NET code in order to upload the files?
Thanks,
Kyle