Hi,another question that troubles me.
Well, i have a system using VB and EJB.When i update a state to the db using VB and i want to view the state back using CMP bean,it seems that the state has not been updated yet.
The update has not been processed through the EJB
container because i just update it outside using VB(or directly update it through the db client).
Does EJB container sychronize with the db when
I view the update (in fact ejbFindByPrimaryKey() is called).From the ejb spec,it states that
at least one ejbLoad() would be called at the beginning of the first transaction method call.
So synchroniztion doesn't seem to be a problem.
Any comment?