1) Delphi Ansi Compiler:
OracleTypes.pas
procedure TVariables.WriteBinaryData(Stream: TStream);
...
{+}
//WriteBuffer(PChar(Name)^, Temp); // OLD
WriteBuffer(PWideChar(WideString(Name))^, Temp); // NEW
{+.}
2) Oracle Monitor:
OracleMonitorIntf.pas
function...