Reputation: 707
I need to be able to remotely access a sqlite3 database from over the network, while I understand this is generally bad practice, my application will only be reading from the database. And switch to something besides sqlite3 is not an option because the application that uses it is proprietary.
I see most people suggesting a network share but I'm wondering if there is a cleaner way to go about this, as I will only ever need access to this one file.
For those of you curious, I will be accessing Apple Configurator's backend database that stores device information if that helps.
Upvotes: 1
Views: 301
Reputation: 1350
I think that SQL Relay might be exactly what you need.
It provides network access to many databases, sqlite3 included.
Upvotes: 1