Skip to content
Advertisement

How to set up sqlite to be local server (on lan)

Current situation : I have one GUI program(written by python) which using sqlite data stored on my computer.

Wishlist: I would like to have one server computer to locate sqlite data (DATA A1) (CRUD operation needed) and ten more client computer using GUI program(written by python) which connect with the sqlite data (DATA A1) on lan.

I have no idea how to set up this program and server and what I need to learn more.

Current example code for check product in shop:

changing sqlite3 to MySQL:

Advertisement

Answer

Don’t do that. Sqlite is a simple, in-memory, single-process database. If you need a database server, then use a database server. There are many choices.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement