Click here to Skip to main content
15,884,388 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi all plz help me,


var connection = new ActiveXObject("ADODB.Connection") ;

var connectionstring="Data Source=<server>;Initial Catalog=<catalog>;User ID=<user>;Password=<password>;Provider=SQLOLEDB";

connection.Open(connectionstring);
var rs = new ActiveXObject("ADODB.Recordset");

rs.Open("SELECT * FROM table", connection);
rs.MoveFirst
while(!rs.eof)
{


document.getElementById('text area control name').value = rs.fields(1);


   rs.movenext;
}

rs.close;
connection.close;</password></user></catalog></server>
Posted
Updated 25-Jul-11 2:15am
v2

using javascript we cannot directly connect to the database server. To achieve that we have to create a web service and using web service we can load the data.
 
Share this answer
 
hi all the above code is what i have written please tell me how to create a webservice and how to load the data and display table in my text area control
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900