patternsqlMajor
Is it possible to use SQLite as a client-server database?
Viewed 0 times
sqlitedatabaseclientpossibleserveruse
Problem
Are there any techniques or tools to work with SQLite on a medium size/traffic/concurrency DB environment?
Solution
SQLite is an embedded database and it is not intended to be used as a client/server DB. If you really want to, you can use SQLitening.
What SQLitening is
SQLitening is a client/server implementation of the very popular SQLite database.
SQLitening is a programmer's library in standard Win32 DLL form. It is installed as a standard Windows Service. In addition to client/server mode, the library allows the programmer to also access SQLite databases in local mode. In either mode (local or client/server), the database is extremely fast and robust.
-- Source: http://www.planetsquires.com/sqlite_client_server.htm
What SQLitening is
SQLitening is a client/server implementation of the very popular SQLite database.
SQLitening is a programmer's library in standard Win32 DLL form. It is installed as a standard Windows Service. In addition to client/server mode, the library allows the programmer to also access SQLite databases in local mode. In either mode (local or client/server), the database is extremely fast and robust.
-- Source: http://www.planetsquires.com/sqlite_client_server.htm
Context
StackExchange Database Administrators Q#21, answer score: 33
Revisions (0)
No revisions yet.