ADO.NET Advanced SQL Data Provider

I have an asp.net, C # application using the MSSQL 2008 server. At some point, I also want to insert some data into the widespread v10 database. There was a search for a widespread data provider from http://www.pervasive.com/developerzone/access_methods/adonet.asp , but the link has nothing!

Is there anyone who can provide a DLL or a better option?

+3
source share
1 answer

With PSQL v10 and v11, the provider is installed when the engine or client is installed by default. If you need to integrate into Visual Studio, you will need the SDK, which is located under the heading "ADO.NET 3.2" at http://www.pervasivedb.com/psqlv10/pages/default.aspx . I also highly recommend updating PSQL v10 SP3 (10.31 Update 12). Bugs were fixed for both the PSQL engine and the ADO.NET provider.

After you have verified that it is installed, you can add a link to the DLL (in C: \ Program Files \ Pervasive Software \ PSQL \ bin \ ADONET32 \ Pervasive.Data.SqlClient.dll) in your C # application and use the objects .

+6
source

All Articles