I have an oracle 9 database with a varchar field. The value in the field is an UNC path: \Europa\APP\WIN.APP\demo\Updates
The value was saved by an Delphi ADO application. A select with this ADO application get the correct value. But if i select with UNIDAC the result is: ????????????????????s\
Code: Select all
var
DS : TCustomUniDataSet;
uniConnect : TUniConnection;
begin
DS:= uniConnect.CreateDataSet as TCustomUniDataSet;
DS.Options.EnableBCD := True;
DS.Options.EnableFMTBCD := True;
DS.SQL.Text := 'SELECT path FROM t_demo WHERE ...'
DS.Prepare;
DS.Execute;
Edit1.Text := DS.FieldByName('path').AsString;
end;
Can you help me.
Christian