I have 2 objectstores in 1 indexeddb database. I can add, retrieve, show and delete the records from either without a problem.
However, what I cannot do is keep the data alive in some way after the transaction ends on one objectstore so I can use it together with the data from the second objectstore.
For example comparing values from one store to the other.
I have assigned arrays in each transaction and pushed the results into those arrays but when I come out of the transaction everything becomes undefined.
I am so tired of looking at 1 page "todo list" examples.
Maybe there isn't a way to do what I am trying. I had it working perfectly using websql but that's out now. If there is a way can someone point me to an example using multiple objectstores, please?