Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Client notification

Status
Not open for further replies.

bfeuskirchen

Programmer
Joined
May 15, 2003
Messages
1
Location
GB
Hello,

i'm using Interbase 6 and like to know, if there is a possibility to tell all other clients that I've changed a table and that they should update their data (do automatical refresh). How can I do that?

Greetings,

Christian
 
Hi Christian -

What development tool are you using to interact with Interbase, Delphi ? Or do you mean just by working with Interbase itself?

Either way I think you need to perhaps look at using "Events". These can be used in triggers and can broadcast certain events from the server. For example...

CREATE TRIGGER POST_NEW_ORDER FOR ORDERS
ACTIVE BEFORE INSERT POSITION 0
AS BEGIN
POST_EVENT "NEW_ORDER";
END

Anyway, hope this helps..

Opp.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top