(self)
| 27 | return result |
| 28 | |
| 29 | def _get_cursor(self): |
| 30 | db = DbConnector(database=DatabaseSetting().database_name, host=DatabaseSetting().host, |
| 31 | username=DatabaseSetting().username, password=DatabaseSetting().password, |
| 32 | dbms=DatabaseSetting().dbms) |
| 33 | |
| 34 | return db._createDBEngine() |
| 35 | |
| 36 | |
| 37 | def _create_dbCursor(self): |
no test coverage detected