oracle, sqltimestamp and refresh method exception

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
mvictor
Posts: 9
Joined: Tue 11 Aug 2009 15:38

oracle, sqltimestamp and refresh method exception

Post by mvictor » Wed 15 Oct 2014 10:59

Hello

UNIDAC 5.5.12
prvider : oracle

i'm trying to run this code :

Code: Select all

uq4:=tuniquery.Create(nil);
 uq4.Connection:=dm1.uc_main;
 uq4.SQL.Add('select current_timestamp  as cs from dual');
 uq4.Open;
  showmessage(uq4.FieldByName('cs').asstring);
  uq4.Refresh; // ERROR
  showmessage(uq4.FieldByName('cs').asstring);
 uq4.Close;
 uq4.Free;
and i get error "cannot convert type" on uq4.Refresh;
why ?
thank you

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: oracle, sqltimestamp and refresh method exception

Post by AlexP » Wed 15 Oct 2014 12:10

Hello,

Thank you for the information. We have reproduced the problem and will try to fix it as soon as possible.

Post Reply