本文介绍了如何使用oledbconnection连接到受c#保护的密码的paradox数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在这里有疑问。我可以使用带有oldeconnection的c#访问paradox数据库,其连接字符串为"this.connect.ConnectionString = @"Provider = Microsoft.Jet.OLEDB.4.0; Data Source =" + Application。 StartupPath + @" \ table;扩展属性= Paradox 5.x;" ;;",但我无法访问带密码保护的paradox数据库。任何人有想法解决它?提前谢谢!
"

I have question here.I can access paradox database using c# with oldeconnection which has connectstring as "this.connect.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+Application.StartupPath +@"\table;Extended Properties=Paradox 5.x;";",but I couldn't 't access a paradox database with password protection.Anyone has idea to solve it ? thanks in advance!
    "

推荐答案

我对悖论做得不多,但您可能想尝试用于不同连接字符串的示例。

I have not done much with paradox, but you might want to try http://www.connectionstrings.com/ for examples of different connection strings.


这篇关于如何使用oledbconnection连接到受c#保护的密码的paradox数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-30 09:05