【发布时间】:2014-03-30 19:52:12
【问题描述】:
从 ASP.NET Web 窗体调用 API 非常简单。
WebClient wc = new WebClient();
string urlData = wc.DownloadString("http://xxx.xxx.xx.xx/sssss/getResponse.do?ID=testing");
但是我们可以从 SQL Server 存储过程中调用 API。
如果是,那么我们如何从 SQL Server 存储过程调用 API 以及如何获得 API 响应?
【问题讨论】:
-
您可以在 CLR Stored Proc 内部执行此操作
标签: sql-server stored-procedures