Pervasive SQL ADO.NET 数据提供程序
我有一个使用 MSSQL 2008 服务器的 asp.net、c# 应用程序。在某些时候,我还想将一些数据插入到通用的 v10 数据库中。正在寻找普遍的数据提供商 http://www.pervasive.com/developerzone/access_methods/adonet.asp但链接什么也没有!
有没有人可以提供 dll 或更好的选择?
I have an asp.net, c# application using MSSQL 2008 server. At some point, i also want to insert some data into a pervasive v10 database. Was looking for the pervasive data provider from
http://www.pervasive.com/developerzone/access_methods/adonet.asp but the link has nothing!
Is there someone out there who can provider the dll or a better option?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 PSQL v10 和 v11,默认情况下安装引擎或客户端时会安装提供程序。如果您需要在 Visual Studio 中集成,则需要标题为“ADO.NET 3.2”的 SDK,网址为 http://www.pervasivedb.com/psqlv10/pages/default.aspx。我还强烈建议更新到 PSQL v10 SP3(10.31 Update 12)。 PSQL 引擎和 ADO.NET 提供程序均已修复错误。
验证安装后,您可以在 C# 应用程序中添加对 DLL 的引用(位于 C:\Program Files\Pervasive Software\PSQL\bin\ADONET32\Pervasive.Data.SqlClient.dll 中)并使用对象。
With PSQL v10 and v11, the provider is installed when the engine or client is installed by default. If you need to integrate within Visual Studio, you would need the SDK which is under the title "ADO.NET 3.2" at http://www.pervasivedb.com/psqlv10/pages/default.aspx. I would also strongly suggest updating to PSQL v10 SP3 (10.31 Update 12). There have been bug fixes to both the PSQL engine and the ADO.NET provider.
Once you've verified it is installed, you can add a reference to the DLL (in C:\Program Files\Pervasive Software\PSQL\bin\ADONET32\Pervasive.Data.SqlClient.dll) in your C# application and use the objects.