My application leaks some memory. I have included the specific lines of code. During the TOracleQuery.Create no memory is lost. Only after the free i get 8 kb extra memory. This only happens ones.
My Oracle Client : 8.1.7
Anny suggestions.
OracleSession1 := TOracleSession.create(nil);
with OracleSession1 do
begin
// Set Session properties
Connected := TRUE;
with TOracleQuery.create(nil) do
begin
// Free the query
Free;
// now i have 8 kb extra memory
end;
Connected := FALSE;
Free;
end
My Oracle Client : 8.1.7
Anny suggestions.
OracleSession1 := TOracleSession.create(nil);
with OracleSession1 do
begin
// Set Session properties
Connected := TRUE;
with TOracleQuery.create(nil) do
begin
// Free the query
Free;
// now i have 8 kb extra memory
end;
Connected := FALSE;
Free;
end