I have a situation where I have multiple iframes accessing the same data in SQLite through the Gears API. JavaScript is running in one iframe and write to a table. Right after that, JavaScript in another iframe goes to read the data written to that table. I noticed that the read operation doesn't have access to the latest data when executed right after the write operation.
Is there a way to ensure that when updating data in SQLite, that update is available right away to other JavaScript running in other windows? Alex
