基于服务的数据库

发布于 2024-10-07 20:35:52 字数 138 浏览 0 评论 0原文

我的服务基础数据库有一个问题,我在我的一个应用程序中使用了它,但我不知道使用它的用户是否需要安装某些东西才能运行应用程序(就像您需要安装 NET 框架一样) c# 应用程序)

注意:这是 windows 应用程序

I have one problem with service base database, I have used it in one of my application but I dont know if user who'll use it need to have something installed to be able to run application (like you need to have installed NET framework for c# applications)

Note: This is windows application

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

赤濁 2024-10-14 20:35:52

这取决于您使用的数据库引擎。 SQL Server/SQL Express/Oracle/MySQL 要求您在计算机上安装应用程序才能运行。 SQLite 和 Firebird 等数据库引擎只是 Dll,因此您可以将其包含在您的项目中。

如果文件是 MDF,即 SQL Server 文件 - 您需要安装 SQL Server 或 SQL Express。

您可以将其包含在您的应用程序中并静默执行:

http://social.msdn.microsoft.com/forums/en-US/sqlsetupandupgrade/thread/7180e4dc-5c1e-4501-83d7-6882abb1f04e/

It depends on what database engine you're using. SQL Server/SQL Express/Oracle/MySQL require you install the application on the machine before it'll work. databases engines like SQLite and Firebird are just Dll's, so you can include then in your project.

If the file is an MDF that's a SQL Server file - you need to install SQL server, or SQL express.

You can include it with your app and do it silently:

http://social.msdn.microsoft.com/forums/en-US/sqlsetupandupgrade/thread/7180e4dc-5c1e-4501-83d7-6882abb1f04e/

薄情伤 2024-10-14 20:35:52

您需要使用正确的服务名称安装相关的数据库引擎,并在安装时创建数据库和相关对象。

You will need to install the relevant database engine with the correct service name, and create the database and relevant objects on installation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文