how do i update my database with the help of update syntax in html ? How to write 'where' statement in this?

how do i update my database with the help of update syntax in html ? How to write 'where' statement in this?

var sqlmek="update into Student_info set(ID,s_name,l_name,address,pincode,mobile_no,mail_id)values (";
    sqlmek = sqlmek + id.value + ",'" + fname.value + "','" + lname.value + "','";
    sqlmek = sqlmek + address.value + "'," + pin.value + "," + mob.value + ",'" + mail.value + "')";
    alert(sqlmek);
    var cn = new ActiveXObject("ADODB.Connection");
    alert('Hi!');
    var strConn = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source = C:/Aptech/dhruv/SMS.mdb";
    alert('Hello!');
    var rs = new ActiveXObject("ADODB.Recordset");
    alert('How are you!!');
    cn.Open(strConn);
    alert('I am Fine!');
    rs.Open(sqlmek, cn);
    alert('Fine');
    alert('Press OK to Update your Records Successfully!!.........');
}
View Answers









Related Tutorials/Questions & Answers:
how do i update my database with the help of update syntax in html <text/javascript>? How to write 'where' statement in this?
How to update record to database? I have trouble with the following code
Advertisements
HQL Update Statement to update database table
Syntax error in my UPDATE..please advise
how to update checkbox list in database
how to update
Update statement
i want to update values
I want to update the multiple values of database depending on checkbox..? Please help me out..
How can I to my database to my application
how to make JTable to add delete and update sql database table
How to update,Delete database values from jtable cells ..
how to update values of a html form into an excel table using java servlets?
How can I protect my database password ?
update database
The UPDATE Statement
how do i write a java program for this??
how to update the value of jslider
how to update the value of jslider
how to update the value of jslider
how to update the value of jslider
how to update the value of jslider
How to update table in Hibernate
how update JTable after adding a row into database
How to update,Delete database values from jtable cells ..
How to update,Delete database values from jtable cells ..
how do i use sql like query in my jsp page
update statement in mysql
How to insert and update all column values of database from jtable.
How to insert and update all column values of database from jtable.
update statement in mysql
how to update image in php
how to update the text file?
java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in UPDATE statement.
How do I write a correct micro-benchmark in Java?
The Update Statement in SQL.
JDBC Update Statement Example
How to update clob??
How to insert and update all column values of database from jtable.
The UPDATE Statement, SQL Tutorial
Update Database from jsp
How can I connect my database to my application ?
how to update combobx's selected value to database with respect toselected multiple checkboxes
using case in update statement
How do I install urllib2 library in my Python module
how to update the text file?
JDBC Prepared Statement Update
Where to update the Hibernate tools?
update
how do i allow users to download a xls file in html?

Ads