Question about Using JSON

I have a table set up with sub tables.

When loading and saving I have been initializing the sub tables each time before I save or load.

My question is, can I just initialize one time in my Forward Declarations versus each time I load or save?

Thanks.

Lori

If you are reading in a json-type structure it should create the whole thing for you.

You don’t need to initialize the table or any of the sub tables.  If you did, json.decode() is just going to write over it.  It returns you the whole table ready to go.

Rog

Thanks!

If you are reading in a json-type structure it should create the whole thing for you.

You don’t need to initialize the table or any of the sub tables.  If you did, json.decode() is just going to write over it.  It returns you the whole table ready to go.

Rog

Thanks!