Sqlite database library on a network drive

Hi

I have a sqlite library set up, that works (thanks to the forum).
But now I wanted to put into a network drive, so that another developer could work with it also.
What I did is change the path to file to a network location on a shared drive in the ODBC data source application (using Windows here).
And here is the error that I get:
image

Where do I go from here?

To make a long story short: you should switch from sqlite to a client/server SQL database. It is not designed to support your use case.

Read more technical detail here: SQLite Over a Network, Caveats and Considerations

MySQL (or MariaDB) and PostgreSQL are common choices where you need multiple people to access a database library.