emilioantonio
Technical User
Hy all
I successfully access tha data of a btrieve format database via the following ODBC DSN-less
connection using Pervasive.SQL 2000 Workstation engine and VB6.
.....
Dim adoConn As New ADODB.Connection
Dim rst As New ADODB.Recordset
With adoConn
.Provider = "MSDASQL"
.ConnectionString = "driver={Pervasive ODBC Client Interface};ServerName=;ServerDSN=;dbq="N:\database\man10";
.Open
End With
rst.Open "select * from " & Chr$(34) & "deviation surveys" & Chr$(34) & " order by .....
After ugrading from Pervasive.SQL 2000 Workstation engine to Pervasive.SQL 9.50 Workstation engine
I run my application and i realised that i was no longer able to access tha data of my database, having the following error:
[Pervasive][ODBC Client Interface][LNA][Pervasive][ODBC Engine Interface][Data record manager]No such table or object
I can create and access the database through Pervasive control center and if i use the engine DSN created with PCC into the vb6 connection string it works perfectly (..dbq=DSNdbname.
Can anyone suggest where and how i can fix the connection string to let it work perfectly under PSQL 9.50?.
Thanks in advance
Benedetto
I successfully access tha data of a btrieve format database via the following ODBC DSN-less
connection using Pervasive.SQL 2000 Workstation engine and VB6.
.....
Dim adoConn As New ADODB.Connection
Dim rst As New ADODB.Recordset
With adoConn
.Provider = "MSDASQL"
.ConnectionString = "driver={Pervasive ODBC Client Interface};ServerName=;ServerDSN=;dbq="N:\database\man10";
.Open
End With
rst.Open "select * from " & Chr$(34) & "deviation surveys" & Chr$(34) & " order by .....
After ugrading from Pervasive.SQL 2000 Workstation engine to Pervasive.SQL 9.50 Workstation engine
I run my application and i realised that i was no longer able to access tha data of my database, having the following error:
[Pervasive][ODBC Client Interface][LNA][Pervasive][ODBC Engine Interface][Data record manager]No such table or object
I can create and access the database through Pervasive control center and if i use the engine DSN created with PCC into the vb6 connection string it works perfectly (..dbq=DSNdbname.
Can anyone suggest where and how i can fix the connection string to let it work perfectly under PSQL 9.50?.
Thanks in advance
Benedetto