Ok, now that it all works beautifully, I wonder if we could go one step further…
Can we create a virtual Index? so instead of creating 100 rows, just have a single row, with all the columns.
And if I’m looking to fetch all rows, create a virtual index to sort of fetch specific rows as if they existed.
might be feasible with Query, Relations, and Joined Lists- while remaining lightweight. @Robert_Petitto any thoughts?
With the right JSON structure, it’s possible for f you wanted to query data… you just wouldn’t be able to display the data as collections unless you created helper tables to parse out the data onto their own row
Yes, that’s correct. I usually use it when I have a JSON structure with multiple items, or a comma-delimited list with multiple items. The helper table would include index for each row, and I use that index to access each item in the JSON/list.