in reply to Re: Perl to protect database field name info
in thread Perl to protect database field name info

agreed. using the correct DBI constructs and SQL (or better yet, use a wrapper like Class::DBI) you should never have any problem with this. and if you do have sql problems the OP's solution isn't really going to help.

  • Comment on Re^2: Perl to protect database field name info

Replies are listed 'Best First'.
Re^3: Perl to protect database field name info
by Mutant (Priest) on Feb 13, 2007 at 10:01 UTC
    or better yet, use a wrapper like Class::DBI
    Don't forget DBIx::Class, which IMHO surpassed Class::DBI in just about every way about a year ago.

    In response to the OP, you may also want to look at Catalyst. From your posts so far, it appears as if you're building web applications. Using a framework like Catalyst (along with Template Toolkit and DBIx::Class) will encourage you to keep your application, database and presentation logic separate (which will save you a lot of pain in the long run).