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


in reply to Re: stupid mistake in DBI code
in thread stupid mistake in DBI code

I misdiagnosed his problem because of the lack of indentation. On a side note, I found vim does a great job of indenting code for you.
1) :set filetype=perl 2) :filetype indent on 3) :e 4) gg=G

Replies are listed 'Best First'.
Re^3: stupid mistake in DBI code
by cliffrubinmusic (Novice) on Apr 26, 2011 at 17:01 UTC
    Thanks folks, I appreciate you taking the time. I found the error; I'm emptying @values right after i fill it. Blessings; Cliff
Re^3: stupid mistake in DBI code
by runrig (Abbot) on Apr 26, 2011 at 16:59 UTC
    This is also easy to do in Vi or Vim:
    :%!perltidy
    You could even create a shortcut to make it even easier :-)