VS 2008 在先决条件对话框中没有 Sql Server Express 2005 x64
我正在尝试在 64 位系统上安装 VS 2008 应用程序。一切正常,但 Sql Server Express 2005 失败,因为在先决条件对话框中它只提供 x86 版本,没有 x64 版本。
那么我应该安装什么呢?我应该直接从 Microsoft 网站下载 sql server express 2005 x64 版本并重新分发吗?
问候 尼拉杰
I am trying to install a VS 2008 application on a 64 bit system. All works fine but Sql Server Express 2005 fails because in prerequisite dialog it only offer x86 version and no x64 version.
So what should I install instead of that ? Should I directly download sql server express 2005 x64 version from Microsoft website and redistribute it ?
Regards
Niraj
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果确实没有任何理由说明应用程序必须是 64 位(内存使用或其他),那么只需强制构建 32 位并完成即可。大多数“普通”应用程序在 64 位操作系统上作为 32 位应用程序运行时应该不会遇到任何问题。
换句话说,将 Project Properties/Build/ 中的 Platform Target 设置为 x86,并确保将 Configuration 设置为 All Configurations。
我意识到这并不能真正回答你的问题,但它可以解决你的问题。
If there really isn't any reason why the application has to be 64-bit (memory usage or whatever), then just force a 32-bit build and be done with it. Most "normal" applications should not have any trouble running as 32-bit apps on a 64-bit OS.
In other words, set Platform Target in Project Properties/Build/ to x86 and make sure to set Configuration to All Configurations.
I realize that this doesn't really answer your question but it could solve your problem.