Initialize the database connection settings.
(self)
| 220 | ) |
| 221 | |
| 222 | def init_connection_state(self): |
| 223 | """Initialize the database connection settings.""" |
| 224 | if self.alias not in RAN_DB_VERSION_CHECK: |
| 225 | self.check_database_version_supported() |
| 226 | RAN_DB_VERSION_CHECK.add(self.alias) |
| 227 | |
| 228 | def create_cursor(self, name=None): |
| 229 | """Create a cursor. Assume that a connection is established.""" |
no test coverage detected