0

Really appreciate your support I Built a couple of ElectronJs Apps that use Websql (they already working), I recently learnt that Websql will stop completely next year, my question is -will this Apps stop working due to the websql stopping ? or -as the Apps are already built it will be work as is but i wont be able to use this feature in the future updates?

Should I start building this apps again using indexeddb or it will keep working

1 Answer 1

0

As WebSQL is embedded in Chromium, which in turn is embedded in Electron, should you decide to update Electron to a version that contains Chromium version 119 or newer, then WebSQL functionality within your application will no longer work (noting that WebSQL depreciation began in Chromium version 97).

Like any technology that is being phased out, it would be in your applications best interest to find an alternative to WebSQL and implement that before updating Electron past a Chromium version where your use of WebSQL stops working.

Of course, you can continue to use WebSQL if you so wish by not upgrade Electron but if your application has a user base, they may think differently as halting all future updates to Electron (thus Chromium as well) may create security holes in the future.

In summary:

WebSQL will continue to function indefinitely if you do not update your version of Electron.

References:

Not the answer you're looking for? Browse other questions tagged or ask your own question.