随我的 Windows 服务一起提供 SQL Server Express 版本
我创建了一个与 SQL Server Express Edition 交互的 Windows 服务。我想将其发送到我的测试机器上,该机器没有安装任何形式的 SQL Server。
有没有一种简单的方法可以将 SQL Server Express Edition 与我的服务一起提供?是否可以将这部分作为安装项目的一部分?
谢谢。
I have created a windows service which interacts with SQL Server Express Edition. I want to ship this to my test machine which doesn't have any form of SQL Server installed.
Is there an easy way of shipping SQL Server Express Edition with my service? Is it possible to make this part of a Setup Project?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您创建的 Windows 服务——我假设您将其编写为 Visual Studio 项目?如果是这样,您可以将 SQL Server 2005 Express Edition 添加为安装程序中的“先决条件”,简单易行...至少如果您有 VS 2008 或更高版本。 具体方法如下。
(制作自己的引导程序包也是可能的,但不太有趣.)
The Windows Service you created--I assume you wrote this as a Visual Studio project? If so, you can add the SQL Server 2005 Express Edition as a "Prerequisite" in the Setup, easy as pie... at least if you have VS 2008 or higher. Here's how.
(Making your own bootstrapper packages is also possible, but not exactly fun.)