Bug while get a blob field as ansi string from Firebird – UsedConnection in nil (UniDAC 7.2.5)
Posted: Wed 16 Sep 2020 07:53
Delphi 10.4.1
UniDAC 7.2.5
Firebird 3.0.5
The error was in UniDAC in DBAccess.pas
For some reason, UsedConnection was not available in TCustomDADataSet.CreateBlobStream() when checking Oracle specific UsedConnection.ConvertEOL property.
I replaced the verification in line 10629 of DBAccess.pas
on the
And it works for me.
UniDAC 7.2.5
Firebird 3.0.5
The error was in UniDAC in DBAccess.pas
For some reason, UsedConnection was not available in TCustomDADataSet.CreateBlobStream() when checking Oracle specific UsedConnection.ConvertEOL property.
I replaced the verification in line 10629 of DBAccess.pas
Code: Select all
if ... UsedConnection.ConvertEOL ... then
Code: Select all
if ... ((UsedConnection <> nil) and UsedConnection.ConvertEOL) ... then