Re: [INTERFACES] DataSets in Delphi

From: Jyry Kuukkanen <jyry(at)neutech(dot)fi>
To: Marcio Alexandroni da Silva <trade(dot)marcio(at)uol(dot)com(dot)br>
Cc: pgsql-interfaces(at)hub(dot)org
Subject: Re: [INTERFACES] DataSets in Delphi
Date: 2000-01-10 13:39:32
Message-ID: Pine.LNX.4.10.10001101538340.14759-100000@cyclone.neutech.fi
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

> 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

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message Gary Stainburn 2000-01-10 16:41:54 PostODBC 6.40.0006 to PostgreSQL 6.5.3 read only
Previous Message Marcio Alexandroni da Silva 2000-01-10 13:12:56 DataSets in Delphi