Is it possible to get Sql connection using jquery?
If it is possible, please tell me how to get it step-by-step.
Is it possible to get Sql connection using jquery?
If it is possible, please tell me how to get it step-by-step.
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).