| 45 | |
| 46 | // MySQL connection configuration type |
| 47 | export interface MySQLConnectionConfig { |
| 48 | host?: string; |
| 49 | port?: number; |
| 50 | user?: string; |
| 51 | password?: string; |
| 52 | database?: string; |
| 53 | socketPath?: string; |
| 54 | } |
| 55 | |
| 56 | // Function to parse MySQL connection string (mysql CLI format) |
| 57 | // Example: mysql --default-auth=mysql_native_password -A -hrdsproxy.staging.luno.com -P3306 -uUSER -pPASS database_name |
nothing calls this directly
no outgoing calls
no test coverage detected