Created
January 8, 2021 18:31
-
-
Save ggoebel/dfd60a11b3bb60040853e743a957fe04 to your computer and use it in GitHub Desktop.
test simple mysql connection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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