Using SQLite with Chrome 119

From NSB App Studio
Jump to navigation Jump to search

Starting with Chrome 119, Google has deprecated SQlite, also referred to as WebSQL. They have been warning of this for a while. (If you're interested in why they are doing this, check out this post).

There are several workarounds.

1. Set a flag in Chrome
  1. Open chrome://flags/ in Chrome
  2. Search for web-sql-access
  3. Enable it
  4. relaunch browser

This is probably the quickest solution for most users. It will probably only work until Chrome 124 is released - by that time, you will need a more permanent solution in place.

2. Register your site for an Origin Trial

You can register your site for an Origin Trial, which restores the functionality until May 28, 2024 when Chrome 124 is scheduled to appear. The advantage of this solution is that you only have to do this once: your users do not have to make any changes at their end.

  1. Go to this page: Register to WebSQL Trial
  2. Fill in the URL for your site in the Web Origin. For example: https://www.nsbasic.com
  3. Check the 4 square disclosure boxes.
  4. You may also need to Sign In into Google.
  5. You will then see a screen like this:
  1. Copy the Token from that screen.
  2. In AppStudio Project Properties, go to ExtraHeaders and add this line:
<meta http-equiv="origin-trial" content="Avihurku4HHj...">
  1. Your app should work properly now.
3. Permanent Solutions

For a permanent solution, you will need to include the SQLite code as a library in your project, since it will no longer be built into the browser. This solution is referred to as SQLite WASM: we will be providing instructions how to use it in the near future.