Hiii,
Is it possible to save a memory tag (DataSet type) in the Database?
Hiii,
Is it possible to save a memory tag (DataSet type) in the Database?
Yes, you can loop through the dataset and build your insert statement.
Alternatively, you can use the system.dataset.toCSV
function to turn a dataset into a string and then store it as text in an appropriately sized TEXT
column. Then, when reading it back, system.dataset.fromCSV
converts the text back into a dataset.