Hi! The platform is windows server 2008. The folllowing is my code.
Dim ConnectionString As String = "Driver={Microsoft Paradox Driver (*.db )};DriverID=538;Fil=Paradox 5.X;DefaultDir=" & Path & ";Dbq=" & Path & ";CollatingSequence=ASCII;" Dim odbcConnection As New OdbcConnection() odbcConnection.ConnectionString = ConnectionString Dim str1 As String = "" str1 = "select * from Customer " Dim command As New OdbcCommand(str1, odbcConnection) odbcConnection.Open()
The last line odbcConnection.Open() show error message "Got unexpected error for externam database driver (11265)"
But when I change the platform to windows server 2003,and it work fine.so ,anyone have any idea?Thanks..

Go to the complete details ...