tags:

views:

29

answers:

4

Can any tell me is there any way that we can pass values using javascript that would execute in manipulating data in DBase

+1  A: 

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.

Ghommey
+2  A: 

Use AJAX for this functionality.

rahul
+1  A: 

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

Zote
A: 

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.

Rowan