[Solved] Sql connection using jquery in HTML? [closed]


jQuery has no helper functions for handling SQL.

It has Ajax functions which can be used to talk to a web service that runs SQL on the server.

Client side JavaScript doesn’t have the ability to access raw sockets, so you can’t connect directly to a remote database.

There are various client side databases, including storage, which can be accessed directly with JavaScript (but jQuery doesn’t have anything to interact with them).

solved Sql connection using jquery in HTML? [closed]