ADODB Connection String: Workgroup Information file is Missing?

后端 未结 1 1018
既然无缘
既然无缘 2020-12-17 03:39

I have a few data sources in access that I need to connect to programatically to do things with behind the scenes and keep visibility away from users.

Said datasourc

相关标签:
1条回答
  • 2020-12-17 04:21

    Your connection string seems to be incorrect. Try:

    conn.open "Provider=Microsoft.Jet.OLEDB.4.0;" _
    & "Data Source=\\pep-home\projects\billing\autobilling\DPBilling2.mdb;" _
    & "Jet OLEDB:Database Password=MyDbPassword;"
    

    -- http://www.connectionstrings.com/access

    0 讨论(0)
提交回复
热议问题