Skip to content

Instantly share code, notes, and snippets.

@ggoebel
Created January 8, 2021 18:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ggoebel/dfd60a11b3bb60040853e743a957fe04 to your computer and use it in GitHub Desktop.
Save ggoebel/dfd60a11b3bb60040853e743a957fe04 to your computer and use it in GitHub Desktop.
test simple mysql connection
#!/usr/bin/env raku
use v6.d;
use DBIish;
state $dbh = DBIish.connect('mysql', :host<localhost>, :user<covid>, :password<covid>, :database<covid>);
say $dbh;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment