|
|
|
|
|
by mkching
4674 days ago
|
|
AFAIK, one database per application would not protect other databases from a SQL injection exploit. The "ATTACH DATABASE" command (http://www.sqlite.org/lang_attach.html) can open any other database that the current user has permissions to. You could, as you mentioned, set up a new user for each database. At a certain point, the permissions systems in a traditional RDBMS may be easier to manage. |
|