vote up 1 vote down star

hi,

I have a Visual Studio 2008 solution with two projects (a Word-Template project and a VB.Net console application for testing). Both projects reference a database project which opens a connection to an MS-Access 2007 database file and have references to System.Data.OleDb. In the database project I have a function which retrieves a data table as follows

 private class AdminDatabase
   ' stores the connection string which is set in the New() method
   dim strAdminConnection as string

   public sub New()
   ...
   adminName = dlgopen.FileName
   conAdminDB = New OleDbConnection
   conAdminDB.ConnectionString = "Data Source='" + adminName + "';" + _
       "Provider=Microsoft.ACE.OLEDB.12.0"

   ' store the connection string in strAdminConnection
   strAdminConnection = conAdminDB.ConnectionString.ToString()
   My.Settings.SetUserOverride("AdminConnectionString", strAdminConnection)
   ...
   End Sub

   ' retrieves data from the database
   Public Function getDataTable(ByVal sqlStatement As String) As DataTable
        Dim ds As New DataSet
        Dim dt As New DataTable
        Dim da As New OleDbDataAdapter
        Dim localCon As New OleDbConnection


        localCon.ConnectionString = strAdminConnection

        Using localCon
            Dim command As OleDbCommand = localCon.CreateCommand()
            command.CommandText = sqlStatement
            localCon.Open()
            da.SelectCommand = command
            da.Fill(dt)
            getDataTable = dt
        End Using

    End Function
End Class

When I call this function from my Word 2007 Template project everything works fine; no errors. But when I run it from the console application it throws the following exception

ex = {"The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine."}

Both projects have the same reference and the console application did work when I first wrote it (a while ago) but now it has stopped work. I must be missing something but I don't know what. Any ideas?

Thanks

Azim

flag

6 Answers

vote up 4 vote down check

I have a visual Basic program with Visual Studio 2008 that uses an access 2007 database and was recieving the same error. I'm found some threads that advised changing the advanced compile configuration to x86 found in the programs properties if your running 64 bit system. So far I haven't had any problems with my program since.

link|flag
But for an asp.net application this is determined by the IIS, so check out this article: support.microsoft.com/kb/894435/en-us – devzero May 14 at 13:14
vote up 3 vote down

Are you running a 64 bit system with the database running 32 bit but the console running 64 bit? There are no MS Access drivers that run 64 bit and would report an error identical to the one your reported.

link|flag
Yes, I am running 64bit XP and this was exactly the problem. Switched the target CPU in Advanced Compile Options to x86 bit application and all works now. Thanks – Azim Oct 26 '08 at 22:35
vote up 1 vote down

check your OLEDB connection string

http://vb.net-informations.com/ado.net-dataproviders/ado.net-oledbconnection.htm

bolton.

link|flag
Thanks for the link. I checked my connection string. It is correct. As @Joel Lucsy points out there are "no drivers for MS-Access that run 64bit". – Azim Dec 12 '08 at 16:40
vote up 0 vote down

Thanks, changing the advance compile to x86 target solved the problem.

link|flag
vote up 0 vote down

Im also facing the same problem. can you guys please help me? where i'll find the installer of 2007 access database provider?

link|flag
vote up 0 vote down
connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=yourdatabasename.mdb;"
connection = New OleDbConnection(connetionString)
connection.Open()
MsgBox("Connection Open ! ")
connection.Close()

thanks.

link|flag
2  
Sorry I am confused about the relevance of your answer? can you elaborate? – Azim Dec 6 '08 at 4:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.