I'm using Delphi 2010 and IBDAC 3.10.0.14.
I read data from a Firebird 2.5 database with character set NONE, which also can contain characters like e.g. 'Ø'. This data then should be inserted into a UTF8 Firebird 2.5 database in a BLOB SUB_TYPE 1 column. For the destination connection, I use the following code in my data access layer to instantiate the connection:
Code: Select all
FIB_Connection := TIBCConnection.Create(nil);
FIB_Connection.ClientLibrary := 'fbclient.dll';
FIB_Connection.Options.Charset := 'UTF8';
FIB_Connection.Options.UseUnicode := True;
FIB_Connection.Options.EnableMemos := True;
Any ideas?
Thanks,
Thomas