-7

Is it possible to get Sql connection using jquery?

If it is possible, please tell me how to get it step-by-step.

shybovycha
  • 11,556
  • 6
  • 52
  • 82
Pikachu
  • 27
  • 1
  • 6

1 Answers1

3

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).

Community
  • 1
  • 1
Quentin
  • 914,110
  • 126
  • 1,211
  • 1,335