Standalone database?

Is there a way to distribute a (small) stand-alone relational database with a Windows application that does not require users to install additional dependencies such as MS Access, SQL Server, MySQL, SQLite, etc.? Only the application will access the database, and not directly to users.

+3
source share
3 answers

I would include SQLite in my application. There are various ways to do this depending on the language you use.

+2
source

Source: https://habr.com/ru/post/1787612/


All Articles