Strange Error in SpecificOptions.Values
Posted: Fri 05 Dec 2014 20:20
I am using Firebird embedded and in OnBeforeConnect of the UniConnection I ran this:
SpecificOptions.Values['InterBase.Role'] := 'RDB$ADMIN';
SpecificOptions.Values['InterBase.ClientLibrary'] := AppPath + 'db\fb\gds32.dll';
which gave me unavailable db errors using UniDac v6 until I changed it to this:
SpecificOptions.Text := 'InterBase.Role=RDB$ADMIN' + CRLF +
'InterBase.ClientLibrary='+ AppPath + 'db\fb\gds32.dll';
Strange, I checked Subversion and this WAS the only change needed..
SpecificOptions.Values['InterBase.Role'] := 'RDB$ADMIN';
SpecificOptions.Values['InterBase.ClientLibrary'] := AppPath + 'db\fb\gds32.dll';
which gave me unavailable db errors using UniDac v6 until I changed it to this:
SpecificOptions.Text := 'InterBase.Role=RDB$ADMIN' + CRLF +
'InterBase.ClientLibrary='+ AppPath + 'db\fb\gds32.dll';
Strange, I checked Subversion and this WAS the only change needed..