In IE, we can open an access database uing an Active X Object.
How I can do the same in Firefox.
As Firefox, dont allow you to create a Active X Object.
Here is the IE Code.
var myConnect = "Provider=Micro soft.Jet.OLEDB. 4.0; Data
Source=" + dbpath + "";
var ConnectObj = new ActiveXObject(" ADODB.Connectio n");
var RS1 = new ActiveXObject(" ADODB.Recordset ");
How I can do the same in Firefox.
As Firefox, dont allow you to create a Active X Object.
Here is the IE Code.
var myConnect = "Provider=Micro soft.Jet.OLEDB. 4.0; Data
Source=" + dbpath + "";
var ConnectObj = new ActiveXObject(" ADODB.Connectio n");
var RS1 = new ActiveXObject(" ADODB.Recordset ");
Comment