创建连接到 SQL Server 的 Windows 桌面小部件

发布于 2024-10-14 01:25:22 字数 166 浏览 2 评论 0原文

我想为 Windows 7 创建一个桌面小部件。

我的要求如下

  1. 我可以提供 SQL Server 登录凭据
  2. 它应该连接到 SQL Server
  3. 列出服务器中的所有作业

谁能指导我如何执行此操作以及从哪里开始?

I want to create a desktop widget for Windows 7.

My requirements are below

  1. I can provide SQL Server login credentials
  2. It should connect to SQL Server
  3. List out all the jobs in the server

Can anyone guide me on how to do this and where to start from?

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

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

发布评论

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

评论(1

暮光沉寂 2024-10-21 01:25:22

也许创建一个中间层,返回 XML/JSON/HTML/...,您的小部件可以通过 HTTP 调用?

SQL Server 2005 支持使用 SOAP/HTTP 端点的本机 XML Web 服务。
它在 sql server 2008 中已被弃用。

您最好的选择是创建一个小型 HTTP 服务器,充当 SQL Server 和桌面小部件之间的代理。
您可以在 Google 上找到 HTTP 服务器的 C# 示例代码。
http://www.google.is/search ?hl=is&q=c%23+simple+http+server

然后让你的小部件调用 HTTP 服务器来获取你想要显示的信息。

PS:让您的 HTTP 服务器登录并与 SQL Server 对话,不要通过 HTTP 发送数据库凭据(或任何其他相关信息)。

Perhaps create a middle layer, that returns XML/JSON/HTML/..., that your widget can call through HTTP?

SQL Server 2005 supported native XML web services using SOAP/HTTP endpoints.
It's been deprecated in sql server 2008.

Your best bet would be to create a small HTTP server that acts as a broker between your SQL Server and desktop widgets.
You can find C# example code for HTTP server on Google.
http://www.google.is/search?hl=is&q=c%23+simple+http+server

Then let your widget just call the HTTP server for the information you want to display.

PS: Make your HTTP server log on and talk to the SQL Server, don't send database credentials (or ay other for that matter) over HTTP.

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