Hi, I'm trying to make an API in Perl6 using Bailador, DBIish and Slang :: SQL, but when I try to use
sql select * from user where nom='"$name"'; do -> $row { "$row".say; }
instead
sql select * from user where nom="try"; do -> $row { "$row".say; }
he will not tell me anything: c (obviously $ name == "try") I am looking for an hour on the Internet, but without an answer. I'm already trying to use only DBIish syntax, but it ends up with the same result. Can someone help me :)?
source share