> I'm using Delphi 3 and ODBCExpress Components do Access Data in PG. The
> problem is that the data can't be refreshed, ie., when some station updates
> a table, the others keep seeing old data! The default command Refresh from
> ODBCExpress and even Delphi TDataSet doesn't work.
>
> Does anyone have any idea?
I've run into same problem and I over came it by doing
dataset.Close;
dataset.Open;
and that seemed to do the trick, at least in my case.
--Jyry