当前位置:网站首页>SQL Server 调用 WebService
SQL Server 调用 WebService
2022-08-04 22:04:00 【51CTO】
declare @xmlhttp int
declare @err int
declare @Get VARCHAR(3000)
EXEC @err = sp_OACreate "MSXML2.XMLHTTP", @xmlhttp OUT --创建XMLHTTP对象
EXEC @err = sp_OAMethod @xmlhttp,'Open',NULL,'Get',' http://www.sms10000.com.cn/szdx_sdk/SMS?cmd=getmo&uid=075582980049&psw=12345','False' --调用OPEN方法
EXEC @err = sp_OAMethod @xmlhttp,'Send',NULL,NULL; --调用SEND方法
EXEC @err = sp_OAGetProperty @xmlhttp, 'responseText',@Get output
print @Get
SELECT @Get as result
边栏推荐
猜你喜欢

com.jacob.com.ComFailException: Invoke of: ActiveDocument

Numpy on the superposition of two arrays

Unknown point cloud structure file conversion requirements
![[larave]关于laravel使用form submit()不能获取值问题](/img/2f/a7a17b1497390509edd6d096e8e473.png)
[larave]关于laravel使用form submit()不能获取值问题

Driving point cloud format changes bring efficiency improvement

UnicodeDecodeError: ‘utf-8‘ codec can‘t decode byte 0xd6 in position 120: invalid continuation byte

PowerBI真经连续剧

中大型商业银行堡垒机升级改造方案!必看!

How to solve the problem that the alarm information cannot be transmitted after EasyGBS is connected to the latest version of Hikvision camera?

MySQL查询为啥慢了?
随机推荐
puzzle(022.1)黑白迭代
OC-归档(序列化)(了解的不多 没细看)
unity2D横版游戏教程8-音效
《剑指offer》刷题分类
七夕特制:《牛郎会织女》
【QT】回调函数的实现
LocalDateTime的详细使用方法
milvus配置相关
Rt-thread [三] link.lds链接脚本详解
打卡第 1 天:正则表达式学习总结
ES6高级-Promise的用法
字节跳动秋招提前批高频面试问题汇总!(内附答案!)
【TCP/IP 五 ICMP】
com.jacob.com.ComFailException: Invoke of: ActiveDocument
shell选择结构(if)
In action: 10 ways to implement delayed tasks, with code!
LeetCode143:重排链表
今天是七夕,来看看程序员的土味情话。
Lecture 2 Software Life Cycle
QT 子窗口—>主窗口 信号和槽的交互