美文网首页
一、postman 数据库的连接

一、postman 数据库的连接

作者: 大年小爱 | 来源:发表于2018-09-07 15:10 被阅读0次

    https://github.com/o1lab/xmysql#xmysql--one-command-to-generate-rest-apis-for-any-mysql-database

    安装并使用xmysql,生成RESTAPI, xmysql 要求node版本再7.几以上,我本机有两个版本,使用的是8.9.1

    xmysql 命令解析:xmysql -h mysql.****.**** -o 3306 -u **** -p **** -d ****_garden -r localhost -n 8090

    -h 输入想要链接的安装mysql 的服务器的域名 -o输入上述服务器的端口 -u -p 是要连接的数据库用户名密码 -d 是要连接的数据库中名 -r 是本地机器,通常就写localhost -n是本地可以使用的端口号,因为我的3000被占用,这里用了8090

    xmysql

    在postman中就可以链接数据库,使用数据了

    Postman使用数据库的Restful接口

    相关文章

      网友评论

          本文标题:一、postman 数据库的连接

          本文链接:https://www.haomeiwen.com/subject/retfgftx.html