I've been given the task of getting the information from submitted forms, and turning it into a readable format.
Naturally I have access to the SQL DB, and I've got to the table, but obviously the data in the RecordData column is XML/JSON, but I can't find the mapping for it. I assume somewhere there's a mapping for these fields. Can anyone point me in the right direction?
var formStorage = new FormStorage();
var recordStorage = new RecordStorage();
var allRecords = recordStorage.GetAllRecords(formStorage.GetForm("contact"));
UFRecords, RecordData readable format
Hi Everyone,
I've been given the task of getting the information from submitted forms, and turning it into a readable format.
Naturally I have access to the SQL DB, and I've got to the table, but obviously the data in the RecordData column is XML/JSON, but I can't find the mapping for it. I assume somewhere there's a mapping for these fields. Can anyone point me in the right direction?
Thanks in advance
Chris
Hi Chris
Do not use SQL for operations like that.
Example how to get all records for contact form:
Hope it helps.
Alex
is working on a reply...