Subject | Re: [firebird-support] database growing too much after bulk |
---|---|
Author | Sergio H. Gonzalez |
Post date | 2008-11-06T17:30:55Z |
> Try this small change in your code.Thanks for the sugestion! I found the problem... apparently Apollo (the
> Mimmo.
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