I am developing a web application on the version 11, I want to Save my form data in JSON format in a single column of an entity and retrieve the saved JSON to prepopulate field of the form. Ex: Say, I have a Product table and I want to save the single product details in JSON format in that Product table.
Daniël Kuhlmann wrote:
Hi Sughash,
That is possible, to save it:
To show it again after reading:
A final not on large text (> 2000 characters), you could use the data type binary, and than the functions from the binary extension to translate from string to binary, and binary back to string. The benefit of this there is virtually no size limit to your json. the downside is you have to do additional coding.
Regards,
Daniel
Thanks for the response.
These pointers worked for me.