Subject Re: [firebird-support] database growing too much after bulk
Author Sergio H. Gonzalez
> Try this small change in your code.
> Mimmo.

Thanks for the sugestion! I found the problem... apparently Apollo (the
component I'm using to read the DBF) is "inventing" a huge blob in one record.
And my blob field just have very small text notes, so I did this:


if Length(DBF_StockNOTA.AsString) > 400) then
StockNOTAS.Clear
else
StockNOTAS.asString := DBF_StockNOTA.AsString;


Thanks to everybody !!! And sorry!! Finally it wasn't a Firebird problem!

-s