从 Windows Phone 访问桌面上的文件和数据库

发布于 2024-10-04 06:23:46 字数 290 浏览 3 评论 0原文

我目前正在开发 Windows Phone 6.0 应用程序。该应用程序访问我桌面上的文件和数据库。

  1. 现在我可以让这个应用程序通过用户/密码身份验证连接数据库 sql-server 2005,但不能通过 Windows 集成身份验证。这里面有什么技巧吗?
  2. 我无法访问桌面上的文件。总是出现异常“[System.ArgumentException] = {“值不在预期范围内。”}”我应该配置一些东西以使Windows Phone访问桌面上而不是手机上的文件系统吗?

有人能解释一下吗?谢谢。

I am currently working on a windows phone 6.0 application. This application accesses the files and database on my desktop.

  1. Now I can get this app connect the database sql-server 2005 via user/password authentication, but cannot via windows integral authentication. Is there any trick here?
  2. I cannot get access to the file on my desktop. Always got the exception "[System.ArgumentException] = {"Value does not fall within the expected range."}" Should I configure something to make the windows phone to visit the file system on my desktop not on the phone?

Can anyone shed some light on this? Thanks.

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

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

发布评论

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

评论(1

爱冒险 2024-10-11 06:23:46

您当前使用的连接字符串是什么?

它看起来应该与此类似:

"Server={YourServer};Initial Catalog={YourDatabase};Integrated Security=SSPI;User ID={YourLogin};Password={YourPassword};"

您仍然需要提供用户 ID 和密码,因为设备不知道当前登录的用户。如果需要,还要确保将域添加到用户 ID。

What is the connections string you are currently using?

It should look similar to this:

"Server={YourServer};Initial Catalog={YourDatabase};Integrated Security=SSPI;User ID={YourLogin};Password={YourPassword};"

You still have to supply a user id and password because the device has no knowledge of a user that is currently logged into it. Also make sure to add a domain to the user id if needed.

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