Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm connecting to DBF files using Delphi 2009 ADO components and this connection string:

Driver={Microsoft dBASE Driver (*.dbf)};DriverID=277;Dbq=c:\mypath;

If c:\mypath doesn't exist, and I run the application inside the debugger, my app hangs. No exception is raised.

If I run the application without debugging, an exception is properly raised.

To reproduce I just create a new application, dropped an TADOConnection on the form, set the connection string and added this code to the OnCreate of the form:

ADOConnection1.Connected := True;

Any ideas?

Thanks

share|improve this question
You could try Advantage Database Server components from Sybase to connect to .dbf files. They work better than ADO for this. – eKek0 Nov 29 '08 at 4:50
Indeed Delphi isn't raising the exception, running without the debugger I get an EOleException, but when I try to debug the application just frezes. – Fabio Gomes Dec 1 '08 at 19:49

1 Answer

Can you please send a code snipped (and the property values).

I tried the connection string and got a decent exception.

Maybe you have some exceptions filtered?

share|improve this answer
Are you using Vista? – Erick Sasse Dec 1 '08 at 19:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.