in reply to Re: Re: Re: How hashes present keys and values.
in thread How hashes present keys and values.

It is not always possible to use placeholders with insert statements (Sybase and MS SQL server come to mind as not implementing these yet for anything other than a select), so you need to use $dbh->quote() in these cases, or if you want to be comaptible across a number of types of databases.
  • Comment on Re: Re: Re: Re: How hashes present keys and values.

Replies are listed 'Best First'.
Re^5: How hashes present keys and values.
by OfficeLinebacker (Chaplain) on Dec 17, 2006 at 02:02 UTC
    I thought that DBI is smart enough to emulate the placeholder functionality for servers that don't implement it natively.

    I like computer programming because it's like Legos for the mind.