Embedding a MySQL database in an application in C #

I am currently studying application development in C #. An application would need to use a database backend, but I was wondering if it was possible to embed the database in the application itself. That is, the user will not need to install MSSQL or MySQL on computers separately to my own application, but instead install my program, and the database will be installed with it. If possible, I would like to use something like a MySQL database, but I do not need to install a MySQL server. Is there a free option to solve this problem.

thanks for the help

+3
source share
2 answers

System.Data.SQLite, .

System.Data.SQLite - SQLite ADO.NET 2.0/3.5 . sqlite3.dll( sqlite3.dll, ).

+4

SQL Server Compact, Microsoft SQL Server. , .

+1

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


All Articles