Enable or disable statement caching
(&mut self, enabled: bool)
| 276 | |
| 277 | /// Enable or disable statement caching |
| 278 | pub fn set_enabled(&mut self, enabled: bool) { |
| 279 | self.enabled = enabled; |
| 280 | info!("Enhanced statement caching {}", if enabled { "enabled" } else { "disabled" }); |
| 281 | } |
| 282 | |
| 283 | /// Get the underlying statement pool for advanced operations |
| 284 | pub fn get_statement_pool(&self) -> &Arc<EnhancedStatementPool> { |
no outgoing calls