We have two applications. One is written in React JS and other is in Visual C++. Can we access one single SQLite Database with both the application with Read/Write Access.
Asked
Active
Viewed 75 times
0
-
1Yes. You can, but keep in mind that while writing to the DB, you'll have a lock that will prevent writing to it from either side of the spectrum. And you can always have multiple read from the DB. – mutantkeyboard Apr 07 '21 at 14:00
-
I have had good success with WAL mode. – drescherjm Apr 07 '21 at 14:03
-
Thank-you everyone. Using sample application it worked. – Piyush Srivastava Apr 19 '21 at 17:10