Tip
If you already have a MySQL instance running, skip the steps to install MySQL, start it, load data, and stop it.
-
Install Node.js (version 22 or later)
-
Start a MySQL instance:
docker run -d --rm --name some-mysql -e MYSQL_ROOT_PASSWORD=my-secret-pw -p 3306:3306 mysql
-
Create a table in MySQL and load data into it:
cat games.sql | docker exec -i some-mysql mysql --user=root --password=my-secret-pw
-
Install the MySQL ADBC driver:
dbc install mysql
-
Install dependencies:
npm --prefix ../.. install
-
Customize the script
main.jsas needed- Change the connection arguments in
databaseOptions- Format
uriaccording to the DSN (Data Source Name) format used by Go-MySQL-Driver, or keep it as is to use the data included with this example
- Format
- If you changed which database you're connecting to, also change the SQL SELECT statement in
conn.query()
- Change the connection arguments in
-
Run the script:
Node.js:
node main.js
Bun:
bun run main.js
Deno:
deno run --allow-ffi --allow-env main.js
Stop the Docker container running MySQL:
docker stop some-mysql