在C#中将MySQL数据库嵌入到应用程序中
作者:互联网
我目前正在研究使用C#开发应用程序.该应用程序将需要使用数据库后端,但是我想知道是否可以将数据库嵌入到应用程序本身中.即用户不需要将MSSQL或MySQL单独安装到我自己的应用程序的计算机上,而是安装我的程序,并随其安装数据库.如果可能的话,我想使用类似MySQL数据库的方式,但不需要用户安装MySQL服务器.是否有免费选项可以解决此问题.
谢谢你的帮助
解决方法:
看一下可以嵌入到您的程序中的System.Data.SQLite.
System.Data.SQLite is the original
SQLite database engine and a complete
ADO.NET 2.0/3.5 provider all rolled
into a single mixed mode assembly. It
is a complete drop-in replacement for
the original sqlite3.dll (you can even
rename it to sqlite3.dll if you’re
using it natively).
标签:embedded-database,c,mysql 来源: https://codeday.me/bug/20191023/1914837.html