Get the database handler for this session
(&self)
| 118 | |
| 119 | /// Get the database handler for this session |
| 120 | pub async fn get_db_handler(&self) -> Option<Arc<DbHandler>> { |
| 121 | self.db_handler.lock().await.clone() |
| 122 | } |
| 123 | |
| 124 | /// Initialize the session connection with the database handler |
| 125 | /// This ensures the session has its dedicated connection |
no test coverage detected