We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4d8a5a commit c64b715Copy full SHA for c64b715
python/plugins/db_manager/db_plugins/connector.py
@@ -60,13 +60,13 @@ def hasTableColumnEditingSupport(self):
60
return False
61
62
63
- def execution_error_types():
+ def execution_error_types(self):
64
raise Exception("DBConnector.execution_error_types() is an abstract method")
65
66
- def connection_error_types():
+ def connection_error_types(self):
67
raise Exception("DBConnector.connection_error_types() is an abstract method")
68
69
- def error_types():
+ def error_types(self):
70
return self.connection_error_types() + self.execution_error_types()
71
72
def _execute(self, cursor, sql):
0 commit comments