IndexedDB iOS

Hi,

I have two tables in the indexeddb. This works fine on Windows but on iOS, if I trap the OnIDBError Event, I get this error:

Can I only have one table in a database on iOS?

Please advise?

Thanks,

Ken

Please do as the instruction suggests.
Working with IndexedDB is asynchronous and you should not launch multiple IndexedDB operations at the same time. You should wait till operation 1 ends before you start operation 2.

Thanks. I had tried this but I have realised the I was trying to open the first table before init'ing the second one. Now works fine.