(self)
| 140 | # Close the connection and cursor |
| 141 | # |
| 142 | def Close(self): |
| 143 | # |
| 144 | # Commit to file |
| 145 | # |
| 146 | self.Conn.commit() |
| 147 | |
| 148 | # |
| 149 | # Close connection and cursor |
| 150 | # |
| 151 | self.Cur.close() |
| 152 | self.Conn.close() |
| 153 | |
| 154 | ## Insert one file information |
| 155 | # |
no test coverage detected