Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
真正的快速问题!*如果我将 SQLite 驱动程序加载到我的 .NET 项目中,当我保存并编译这个项目(它是一个简单的 Windows 窗体应用程序)时,SQLite 驱动程序会构成应用程序的一部分吗?基本上,我计划让我的一个表单控件在用户机器上存在的 SQLite 数据库上执行 SQL 查询。显然,如果这个驱动程序不存在,那么 SQLite 数据库文件将无法被解释!
感谢您的任何意见。
我假设驱动程序是指外部 DLL——类似于ADO.NET库。您需要将 DLL 与您的可执行文件一起分发,或者将源代码直接编译到您的解决方案中。
您还可以在事后使用ILMerge将 DLL 合并到您的可执行文件中。