Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 vb.net 2010 IDE获取 vb.net 2010 连接字符串?
dbprovider = "PROVIDER=Microsoft.Jet.OLEDB.4.0;" dbsource = "Data Source = C:\Users\User\Desktop\test.mdb" con.ConnectionString = dbprovider & dbsource con.Open()
我有这个连接字符串,但我不知道他们从哪里得到提供者。
连接字符串可能驻留在 app.config 中。
如果您对如何构建连接字符串更感兴趣,请参阅此网站。
在您的示例中,后端是Access-2000。