(self, url: URL)
| 759 | return self.loaded_dbapi.connect(*cargs, **cparams) # type: ignore[no-any-return] # NOQA: E501 |
| 760 | |
| 761 | def create_connect_args(self, url: URL) -> ConnectArgsType: |
| 762 | # inherits the docstring from interfaces.Dialect.create_connect_args |
| 763 | opts = url.translate_connect_args() |
| 764 | opts.update(url.query) |
| 765 | return ([], opts) |
| 766 | |
| 767 | def set_engine_execution_options( |
| 768 | self, engine: Engine, opts: Mapping[str, Any] |
nothing calls this directly
no test coverage detected