ROHAN CHAVAN
ROHAN CHAVAN

Reputation:

Javascript Dbconnectivity

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

Answers (4)

Rowan
Rowan

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

Zote
Zote

Reputation: 5379

If you use SQL Anywhere you can publish webservices on data base and use AJAX to access it.

Upvotes: 1

rahul
rahul

Reputation: 187020

Use AJAX for this functionality.

Upvotes: 2

jantimon
jantimon

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

Related Questions