how to get the session id?

How can I get the value of the session id? I’m storing my session in AR which has a “sessid” field for each record. The value in the sessid field is the value I’m looking for.

Thanks,

Bill

session[:id] ?

Turns out it’s

session.session_id

Thanks,

Bill