(self)
| 62 | raise SqlmapFilePathException(errMsg) |
| 63 | |
| 64 | def connect(self): |
| 65 | errMsg = "'connect' method must be defined " |
| 66 | errMsg += "inside the specific DBMS plugin" |
| 67 | raise SqlmapUndefinedMethod(errMsg) |
| 68 | |
| 69 | def fetchall(self): |
| 70 | errMsg = "'fetchall' method must be defined " |
nothing calls this directly
no test coverage detected