Reputation:
Can any tell me is there any way that we can pass values using javascript that would execute in manipulating data in DBase
Upvotes: 0
Views: 42
Reputation: 5727
You can't achieve this without using ajax and accessing a server side script. jQuery offers a simple AJAX platform, and PHP could be used for a back-end.
If you have any details about your server environment, I'm sure somebody here can help you out.
Upvotes: 0
Reputation: 5379
If you use SQL Anywhere you can publish webservices on data base and use AJAX to access it.
Upvotes: 1
Reputation: 38142
There is a really big security problem.
You would have to write the database password in plain text.
Thats why most developers use AJAX to call a server side script.
This script manipulates the database.
Upvotes: 1