954,580 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

ASP.NET with C# database connectivity

Hi I'm new to .NET technology and learning ASP.NET using C# database connectivity and I'm getting the error(PLS HELP):
Could not find installable ISAM.
in the following code:
using System.Data.OleDb;

public System.Data.OleDb.OleDbConnection conn;
public System.Data.OleDb.OleDbDataAdapter adapt;
DataSet ds;
ds=new DataSet();
conn=new OleDbConnection("Provider=MicroSoft.Jet.OLEDB.4.0;Datasource=C:\\Inetpub\\wwwroot\\pracs\\emp1.mdb");
conn.Open();
adapt=new OleDbDataAdapter("select * from emp",conn);
adapt.Fill(ds,"emp");
DataGrid1.DataSource = ds.Tables["emp1"];
DataGrid1.DataBind();

mandar2886
Newbie Poster
19 posts since May 2008
Reputation Points: 10
Solved Threads: 1
 

Are you using older version of MS Access?

If yes, check this link: http://support.microsoft.com/default.aspx?scid=kb;EN-US;283881

Ramesh S
Posting Pro
583 posts since Jun 2009
Reputation Points: 165
Solved Threads: 113
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You