I too would like to know this. I posted a similar question last week, but I still do not have any responses. If you find something, I would like to know.
I know it has been almost a year since you posted this message. I find the easiest way to connect to a pervasive database is through ADO. I hope the following will be of some help:
'Connection Declaration
Dim cnConnection As ADODB.Connection
'Set Connection String
Public Function cnConnect()
Set cnConnection = New ADODB.Connection
With cnConnection
.Provider = "PervasiveOLEDB"
.CursorLocation = adUseClient
.Mode = adModeReadWrite
.Open "C:\FilePath"
End With
End Function
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.