* Close the connection to the database
()
| 90 | * Close the connection to the database |
| 91 | */ |
| 92 | protected async closeConnection() { |
| 93 | if (this.connected) { |
| 94 | await this.#connection.end(); |
| 95 | } |
| 96 | |
| 97 | this.resetSessionMetadata(); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Transactions are a powerful feature that guarantees safe operations by allowing you to control |