It raises an exception: every time a Delphi XE-8 program executes this code:
procedure TForm_hora_edit_.SpdBtn_KOMISII_ZASEDANIA_Click(Sender: TObject);
begin
Data_Module.IBQuery_KOMISII_ZASEDANIA_.Active := False;
Data_Module.IBQuery_KOMISII_ZASEDANIA_.SQL.Text := 'SELECT * FROM KOMISII_ZASEDANIA ORDER BY ZASED_DT DESC';
Data_Module.IBQuery_KOMISII_ZASEDANIA_.Active := True;
end;
The exception is raised on this line:
Data_Module.IBQuery_KOMISII_ZASEDANIA_.Active := True;
Exception message:
No mapping for the Unicode character exits in the target multi-byte code page
I did create the table KOMISII_ZASEDANIA using a free software: SQL Manager Lite for IB/FB
The charset of the database is: UTF8; the table contains characters from the Cyrillic alphabet.
I need to avoid the above exception.