Posts

Showing posts from January, 2016

How to Read Data from MS Access using JavaScript

How to read data from MS Access File using JavaScript           The bellow mentioned script is used to read data from MS Access file and to display the same data on webpage.             This is just a sample, the same may be modified as per requirements ======================================================================= <html>     <head>         <title>Entitled Document</title>         <script language="JavaScript">         function getdata(){             var cn = new ActiveXObject("ADODB.Connection");             var strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source =1.mdb;Persist Security Info=False";             cn.Open(strConn);             var rs = new ActiveXObject("ADODB.Recordset");             var SQL = "select * from Table1";             rs.Open(SQL, cn); for(i=0;i<=2;i++) { document.write(rs(i)); }            rs.Close();             cn.Close();          }