0

this is my code to access the data from particular folder.. but i can't able to access the mdb database from my App_data folde.. plz help..

OleDbConnection a = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data   
Source=D:\\timetronix.mdb");
Amit
  • 15,217
  • 8
  • 46
  • 68
user1999324
  • 48
  • 4
  • 10

1 Answers1

0

try like this . Connection strings Access

OleDbConnection a = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\timetronix.mdb;User Id=admin;Password=somepass;");
Ravi Gadag
  • 15,735
  • 5
  • 57
  • 83