Bug on refreshrecord

planas

Member²
Hello,

We used a dataset with this query :
select rowid,col1 alias1,col2 alias2 from my_table

But when we try to use refreshrecord method DOA doesn't refresh the current record because you make a : select * from my_table and don't use the select list (rowid,col1 alias1,col2 alias2) so the record is not refresh without any error.

JPP
 
Include the roAllFields option in the RefreshOptions property of the dataset. Now the original field list will be fetched for the current record.

------------------
Marco Kalter
Allround Automations
 
Back
Top