Hello
I'm using Delphi 7 and use InterBase Data Access Components v4.0.2. When I run the application from the Delphi environment, every time you open or close a transaction skips the exception "socket error 10061."
When the application is executed outside the environment does not miss any exception.
This happens with both 1.5.6 and 2.5.1 Firebird, but everything works fine when I use the components v3.10.0.16
This exception is serious?, Is a bug?, How could solve?
I hope your news
"socket error 10061" with IBDac v4.0.2
-
AndreyZ
-
AndreyZ
This error can be caused by the TIBCSQLMonitor component. If there is no dbMonitor running or the port is incorrect, the "Socket Error 10061" error is raised. To solve the problem in this case, you should set the TIBCSQLMonitor.Active property to False, or set the TIBCSQLMonitor.Option.moDBMonitor property to False. Please note that in this case you will see the 'Socket error 10061' error only if you run your application from IDE. You will not see this error when you run the executable file of your application.
-
AndreyZ