Using IndexedDB in Electron application

I'm still trying to figure out a simple database connection for an Electron app. I looked into the IndexdDB sample apps, and still do not understand where the data is stored "in the Browser".

Am I right, that this concept is NOT working for Electron apps?

Hi,

The data is stored most likely somewhere on the hard drive of the user. The TWebIndexedDBClientDataSet component is based on the IndexedDB web API which should work out of the box in Electron too. You might first want to read about the limitations of IndexedDB to see if it fits your needs.