in reply to Re^8: Inserting, update and deleteting a database under conditions
in thread Inserting, update and deleteting a database under conditions

  1. @dbfiles doesn't contain what I thought
  2. @dbfiles is filled using $dbh->do
  3. I wonder what the return value of $dbh->do is?
  4. I wonder if the DBI documentation mentions the return value of the do method?
OK, that should tell you why your code returns what it does. To get your code to do what you want, I'd recommend consulting DBI recipes.

Replies are listed 'Best First'.
Re^10: Inserting, update and deleteting a database under conditions
by Nik (Initiate) on Jan 16, 2008 at 10:28 UTC
    Thanks, i guess if at some point i don't start reading i'll question myself and other for eternity.... :-)

    Thanks for the links, lets hope they are written in an easy way so i will be able to understand them.