Visual Studio 2003 在哪里存储使用服务器资源管理器创建的连接
我正在创建与 SAP 系统的连接,并希望手动修改连接字符串。可以这样做吗?
Visual Studio 2003 在哪里存储使用服务器资源管理器创建的连接
I am creating a connection to an SAP system and want to manually modify the connectionString. Is it possible to do this?
Where does Visual Studio 2003 store connections created using server explorer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有 vs 2008,所以这可能会有所不同 - 但也许它仍然有帮助:
%APPDATA%\Microsoft\VisualStudio\9.0\ServerExplorer\DefaultView.SEView
(对于 vs 2003,这个可能是...\7.1\...
要查找%APPDATA%
的值,请在 a 中执行echo %APPDATA%
。cmd
shell)EncryptedConnectionString
,类似于01000000D08C9DDF0115D1118C7A00C04FC297EB0100000...
- 所以你不能手动编辑它。i have vs 2008, so this might be different - but maybe it still helps:
%APPDATA%\Microsoft\VisualStudio\9.0\ServerExplorer\DefaultView.SEView
(for vs 2003, this would probably be...\7.1\...
. to find the value of%APPDATA%
, doecho %APPDATA%
in acmd
shell)EncryptedConnectionString
, something like<EncryptedConnectionString id="ref-18">01000000D08C9DDF0115D1118C7A00C04FC297EB0100000...</EncryptedConnectionString>
- so you cannot edit it manually.