Subject Re: [IBO] RollBackRetaining change
Author Jason Wharton
I think something like this might be possible to add to the current version
of IBO.
I am going to need to think through this. Perhaps another thing I can do is
keep a timestamp for when the dataset last posted a change. Then, even if it
is requestlive, if there hasn't been a change posted since the transaction
started there is no need for it to refresh either.

I've logged this as an item for consideration.

Regards,
Jason Wharton
CPS - Mesa AZ
http://www.ibobjects.com


----- Original Message -----
From: <hans@...>
To: <IBObjects@yahoogroups.com>
Sent: Sunday, August 05, 2001 12:42 PM
Subject: [IBO] RollBackRetaining change


> TIBOTables don't seem to have RequestLive = False if R/O but
> it seems to work for a mixture of Tables and Queries by using
>
> if (not ReadOnly) and RequestLive then
> Refresh;
>
> instead of
>
> if RequestLive then
> Refresh;
>
> I hope this test is valid for all tables :)