How to pass thread variable from one actor to another

I want to make a db call from actor model for that I have to set a scope to thread.

But in actor model each actor is running in each thread. So how to pass thread local variable from one actor to another in actor model

Send a message containing the information you retrieve from the DB to the other actor.