我在同一个论坛上找到了在 c# 中读取 .db 文件的帖子,但没有显示如何从代码中访问它的表。
那么有人知道如何打开连接并访问/读取.db
文件vb.net
吗?
我尝试使用下面的代码打开连接,但收到此错误:
[DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.
我的代码是:
Dim connection As OleDbConnection = New OleDbConnection
connection = New OleDbConnection("Provider=SQLOLEDB;Data Source=C:\mydatabase.db;Persist Security Info=True;Integrated Security=SSPI;")
connection.Open()
谢谢。