(&self, _db_name: &str)
| 144 | } |
| 145 | |
| 146 | fn create_database(&self, _db_name: &str) -> String { |
| 147 | "-- sqlite: database is created on connection".to_string() |
| 148 | } |
| 149 | |
| 150 | fn drop_database_if_exists(&self, _db_name: &str) -> String { |
| 151 | "-- sqlite: drop database not supported via SQL".to_string() |
nothing calls this directly
no outgoing calls
no test coverage detected