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