Thread/Polling Solution
I want to poll a particular coloumn of a table for any changes contuniously in regular interval of time thru out.
How to do this.
Can i use the thread to poll.
How to get the return out of a thread and invoke another bean
The table is a Database table where in it consists of 4 or 5 coloumns with the 1st col as the primary key.
Say the fourth col is for writing the status of a transaction on a periodic time.
So when the changes occur, accorindingly i have to invoke the respective beans(EJB's).

