in reply to Re: Re: Escaping a string
in thread Escaping a string
If my understanding of black magic is correct that should take care of your quoting on the way into the DB. You should be able to select, etc. at will and have it come back out of the DB in its original (unescaped) form.use DBI; $quoted_string = $dbh->quote($string);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: : Re: Escaping a string
by Anonymous Monk on Mar 13, 2003 at 21:23 UTC | |
by demerphq (Chancellor) on Mar 13, 2003 at 21:49 UTC | |
by thor (Priest) on Mar 14, 2003 at 13:25 UTC |