创建连接到 SQL Server 的 Windows 桌面小部件
我想为 Windows 7 创建一个桌面小部件。
我的要求如下
- 我可以提供 SQL Server 登录凭据
- 它应该连接到 SQL Server
- 列出服务器中的所有作业
谁能指导我如何执行此操作以及从哪里开始?
I want to create a desktop widget for Windows 7.
My requirements are below
- I can provide SQL Server login credentials
- It should connect to SQL Server
- List out all the jobs in the server
Can anyone guide me on how to do this and where to start from?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许创建一个中间层,返回 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.