lykich has asked for the wisdom of the Perl Monks concerning the following question:
Today I see next problem, example.
This work.my $sth = $dbh->prepare("SELECT CONCAT('My','\@', 'QL')");
Not workmy $sth = $dbh->prepare("SELECT CONCAT('My','\'', 'QL')");
How ?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: dbi mysql concat interpolation
by choroba (Cardinal) on Feb 19, 2015 at 16:04 UTC | |
by davido (Cardinal) on Feb 19, 2015 at 17:45 UTC | |
|
Re: dbi mysql concat interpolation
by vinoth.ree (Monsignor) on Feb 19, 2015 at 16:15 UTC | |
by Anonymous Monk on Feb 19, 2015 at 20:01 UTC | |
by lykich (Initiate) on Feb 19, 2015 at 18:07 UTC | |
by Don Coyote (Hermit) on Feb 20, 2015 at 11:43 UTC |