tomole
tomole

Reputation: 1006

Use Electron with Database file

I have to build an application for a small company. I want to use a boilerplate which uses Electron, React Redux... but there is no server in the company. They want me to save a file on their network drive which can be accessed through the Electron app.

In the past I used Microsoft Access to connect to an Access file on the drive. So far I found no package or something like that to connect to a database file.

How to resolve this problem?

Upvotes: 1

Views: 1484

Answers (1)

Amid
Amid

Reputation: 22382

You should have a look at sqlite. Similarly to ms access it will store all your data in file + has all the power of SQL.

Here is a sample boilerplate.

Upvotes: 2

Related Questions