REGDB_E_CLASSNOTREG(0x80040154).

R

raagz

Hi,

I am trying to access an mdb file using C# in ASP.NET but i get this error..

No error information available: REGDB_E_CLASSNOTREG(0x80040154).

here goes my code:\
-------------------
string strConnection= "Provider=Microsoft.Jet.OleDb.4.o;";
strConnection+= @"Data source=D:\northwind.mdb";

OleDbConnection objConnection=new OleDbConnection(strConnection);
string strsql="select firstname,lastname from employees";
OleDbCommand objCommand = new OleDbCommand(strsql,objConnection);

objConnection.Open();
DataGrid1.DataSource= objCommand.ExecuteReader(CommandBehavior.CloseConnection);
DataGrid1.DataBind();
objConnection.Close();
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,774
Messages
2,569,598
Members
45,152
Latest member
LorettaGur
Top