mysql.MySQLOptionsMySQLOptions defines the data source name (DSN) options required to connect to a MySQL database.
along with other options like Timeout etcExample
Copy
Ask AI
const mysql = require('nuclei/mysql');const options = new mysql.MySQLOptions();options.Host = 'acme.com';options.Port = 3306;