This seems to be good question to me. Can somebody explain this please.
P:169(
EJB Spec2.0) does say that the bean instance does not move into Ready state from the pooled state, during the execution of a finder/home methods.
It does not explain why?
Coming to the last part of ur question,
"So, how would you associate entity bean in the ready state with the DB record that you entered directly using SQL without using ejbFind?"
I think you cannot access an entity bean with a row already created in the database thru some other means, without using an ejbFind method first.
ejbCreate method cannot be used for an already existing row, because the row already exists in the database and it might throw SQLExceptions due to db constraints.
ejbFind method has to be used to access the row/entity bean and the subsequent first business method call would transition the bean from the Pooled state to the Ready State.One example, I could think of is the Read-Only entity beans,which are accessed first thru the ejbFind methods.