I created a TCPip server application. The application has one global TADOConnection. This global ado connection is used for both mainstream requests and threading processes.
This is normal? Does ADOConnection create mechanisms to handle multiple requests at once?
My applications work in test environments (2-5 connections). But when deployed in a production environment, I get "inexplicable" access violations at the point where the TADOQuery associated with ADOConnection is set to open.
Should I use ADOConnection or will all queries just make a connection to the database on their own (which is likely to be a more expensive resource)?
delphi adoconnection
M schenkel
source share