http://www.perlmonks.org?node_id=1011494


in reply to Re: Encoding issue from DBI to string
in thread Encoding issue from DBI to string

To expand on what marto said, learn how to create SQL with bound variables

my $rowSet = $dbh->selectall_arrayref("SELECT * FROM CollectionDB.ISIS + WHERE SourceID = ? ORDER BY ObjectKey DESC", {}, $PassedSource);

A Monk aims to give answers to those who have none, and to learn from those who know more.

Replies are listed 'Best First'.
Re^3: Encoding issue from DBI to string
by ev0lution (Initiate) on Jan 03, 2013 at 17:48 UTC
    Thanks for the heads up. Not well versed in MySQL, nor Perl for that matter. Just sort of had all of this dumped on my plate and learning as I'm going.