Subject Connection not closing
Author Steve Harp
Hi All,

What would prevent a TIB_Connection for closing?

My code is like this:
DM.dbXm.Connected := False; // not working
Result := (not DM.dbXm.Connected);

where DM is a TDataModule and dbXm is a TIB_Connection. After setting
connected to False, the connected property still reads true. I've
also tried the following:

DM.dbXm.Close;
DM.dbXm.Disconnect;

Nothing seems to close the connection.

Thanks for any help,
Steve