I'm using ADODB to connect to PSQL 2000. I'm using VS 2005 and C# to do this. I'm trying to add the pervaisve connectivity to some existing code.
For ADODB, I'd just add the reference and then I'd thought it should work after calling the below code:
ADODB.Connection cnBV = new ADODB.Connection();
cnBV.Open("LocalDB", "", "", -1);
However, Pervasive bounces back with a "Driver Not Capable" Error. The bizzare thing is that when I create a new C# project and call the same two lines above with the reference added, the code steps through properly.
Please help.
For ADODB, I'd just add the reference and then I'd thought it should work after calling the below code:
ADODB.Connection cnBV = new ADODB.Connection();
cnBV.Open("LocalDB", "", "", -1);
However, Pervasive bounces back with a "Driver Not Capable" Error. The bizzare thing is that when I create a new C# project and call the same two lines above with the reference added, the code steps through properly.
Please help.