Calling an API from SQL Server stored procedure

后端 未结 7 523
暖寄归人
暖寄归人 2020-11-28 04:23

Calling an API from ASP.NET Web Form is very easy.

WebClient wc = new WebClient();
string urlData = wc.DownloadString(\"http://xxx.xxx.xx.xx/sssss/getRespons         


        
7条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-28 05:00

    The SQL Query select * from openjson ... works only with SQL version 2016 and higher. Need the SQL compatibility mode 130.

提交回复
热议问题