(self)
| 57 | pass |
| 58 | |
| 59 | def testConnection(self): |
| 60 | try: |
| 61 | conn = self.connect() |
| 62 | conn.ping() |
| 63 | conn.close() |
| 64 | return True |
| 65 | except: |
| 66 | raise CloudRuntimeException("Failed to Connect to DB") |
| 67 | |
| 68 | def executeFromFile(self, file): |
| 69 | if not os.path.exists(file): |
no test coverage detected