Can we Execute SQL Queries in JQuery

前端 未结 4 1000
清酒与你
清酒与你 2021-01-05 21:47

can we execute mySQL queries in jQuery Calllback functions & misc. functions

like simple query

UPDATE EMPLOYEE SET PAY = PAY + 500 WHERE E_ID = \         


        
4条回答
  •  甜味超标
    2021-01-05 22:20

    You can't directly access a database from javascript/jQuery but you can post to a web service on the server which can access the database.

提交回复
热议问题