(connection: Connection)
| 27 | }; |
| 28 | |
| 29 | const testConnection = async (connection: Connection): Promise<boolean> => { |
| 30 | const pool = await getMSSQLConnection(connection); |
| 31 | await pool.close(); |
| 32 | return true; |
| 33 | }; |
| 34 | |
| 35 | const execute = async (connection: Connection, databaseName: string, statement: string): Promise<any> => { |
| 36 | const pool = await getMSSQLConnection(connection); |
no test coverage detected