Subject IBO Connection Problem
Author Ed Dressel
In 4.9.14.b53 if I run the following method 1000x, it leaves 1000 connections open on the server:

D:\DelphiComps\IBO\4.9.14.b53\LIB\D2012\Win32\Release

procedure TForm1.CreateDestroyConn;
var
libSession: TIB_Session;
libConn: TIB_Connection;
begin
libSession := TIB_Session.Create(nil);
libConn := TIB_Connection.Create(nil);
try
libConn.IB_Session := libSession;

libConn.Path := 'd:\trak\data\TRAKClientData.FDB';
libConn.Username := 'sysdba';
libConn.Password := 'masterkey';
libConn.Protocol := cpTCP_IP;
libConn.Server := 'localhost';
libConn.CharSet := 'NONE';

libConn.Connect;
libConn.DisconnectToPool;
finally
libConn.Free;
libSession.Free;
end;
end;

If the line above (noted below) is removed, there is no problem:

//libConn.CharSet := 'NONE';

Known issue? This seemed to be causing some major server issues.

Thank you,

Ed Dressel