概述
下载mysql-udf-http-1.0.tar.gz
链接:https://pan.baidu.com/s/1PslMSdeqDUE98GnYbG6d8g
提取码:a740
安装
yum install -y libcurl*
tar -zxvf mysql-udf-http-1.0.tar.gz
cd mysql-udf-http-1.0
vi src/mysql-udf-http.c
//mysql8中没有my_bool数据类型,需要替换成bool
:%s/my_bool/bool/g
//--with-mysql替换成自己mysql安装包的路径
./configure --prefix=/usr/local/mysql-udf-http --with-mysql=/usr/local/mysql/bin/mysql_config
make && make install
//创建软连接
ln -s /usr/local/mysql-udf-http/lib/mysql/plugin/mysql-udf-http.so.0.0.0 /usr/local/mysql/lib/plugin/mysql-udf-http.so
创建函数
create function http_get returns string soname 'mysql-udf-http.so';
create function http_post returns string soname 'mysql-udf-http.so';
create function http_put returns string soname 'mysql-udf-http.so';
create function http_delete returns string soname 'mysql-udf-http.so';
发送请求
select CAST(http_get('http://www.baidu.com') AS CHAR CHARACTER SET utf8) as result
其他操作见作者博客
http://zyan.cc/mysql-udf-http/
最后
以上就是默默戒指为你收集整理的mysql8调用HTTP请求的全部内容,希望文章能够帮你解决mysql8调用HTTP请求所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复