I am using the connection string to connect to database in access. It works in 32 bit and 86 bit operating system but I am facing problem in 64 bit OS. It throws an error provider not found. How to fix that problem??
str_con = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"data source=" + strdbpth + ";" & _
"Persist Security Info=True;"
con.Open(str_con)
str_con = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"data source=" + strdbpth + ";" & _
"Persist Security Info=True;"
con.Open(str_con)