Set schema search path (PostgreSQL only)
(&mut self, schema_search_path: T)
| 328 | |
| 329 | /// Set schema search path (PostgreSQL only) |
| 330 | pub fn set_schema_search_path<T>(&mut self, schema_search_path: T) -> &mut Self |
| 331 | where |
| 332 | T: Into<String>, |
| 333 | { |
| 334 | self.schema_search_path = Some(schema_search_path.into()); |
| 335 | self |
| 336 | } |
| 337 | |
| 338 | /// If true, the connection will be pinged upon acquiring from the pool (default true). |
| 339 | pub fn test_before_acquire(&mut self, value: bool) -> &mut Self { |
no outgoing calls