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 dat
Solution 1:
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.
Post a Comment for "How To Set Up Sqlite To Be Local Server (on Lan)"