Page 1 of 1
SpiderBytes question
Posted: Tue Jan 26, 2021 4:19 am
by kpeters58
I just read up on it and it seems to me that currently it cannot be used for database access as structured lists cannot be passed...
Is that a valid assessment or did I miss something?
Thanks!
Re: SpiderBytes question
Posted: Tue Jan 26, 2021 12:32 pm
by Peter
// Edit: I misunderstood this at first. Here is my revised answer:
kpeters58 wrote:I just read up on it and it seems to me that currently it cannot be used for database access as structured lists cannot be passed...
Yes, you are right: you can only pass simple data types like numbers or strings.
However, you can convert your structured list into a JSON-String (InsertJSON...()) and then convert it back into a list on the server side (ExtractJSON...()).
Greetings ... Peter
Re: SpiderBytes question
Posted: Tue Jan 26, 2021 5:06 pm
by kpeters58
Thanks for the quick reply! I was more worried about having to maintain compatible structures on 'both sides'...