postman鏈接mysql執行操做

postman也能夠鏈接mysqlnode

 

目錄mysql

一、安裝git

二、啓動服務github

三、執行sql語句sql

 

一、安裝數據庫

想要postman鏈接mysql,須要安裝xmysql,啓動該服務,而後才能夠調用。npm

預置條件:完成nodejs和npm的安裝api

安裝時要注意版本的匹配問題,用法和注意事項可查看https://github.com/o1lab/xmysql#xmysql--one-command-to-generate-rest-apis-for-any-mysql-databasepost

 

安裝xmsql:spa

 npm install -g xmysql

 

二、啓動服務

啓動xmysql:

xmysql的相關啓動參數,能夠經過xmysql -h查看

xmysql -h host_name -u user_name -p user_password -d database_name -o port

備註:-h,-u,-p,-o:要鏈接的數據庫的信息, -r,-n想要啓動xmysql服務機器的信息

 

三、執行sql語句

啓動xmysql後,便可經過http://localhost:3000/api/ 訪問 xmysql 自動生成的 Rest API,詳細的使用方法可經過https://github.com/o1lab/xmysql查看

備註:localhost是mysql服務要啓動的機器的ip,3000是xmysql服務默認端口,可在啓動時經過-r修改

case1:查詢某表數據,get請求:http://localhost:3000/api/table_name:

case2:按某種條件查詢,get請求:http://localhost:3000/api/table_name?_where=(username,eq,root)

case3:查詢幾行:get請求:http://localhost:3000/api/table_name?_fields=username,password,特殊的,分頁_p=x&_size=x   

case4:插入數據,post請求:http://localhost:3000/api/table_name:

 

case5:新用patch、刪除用delete

相關文章
相關標籤/搜索