in reply to DBI reports too many bind variables

my @player_rec = split '|';

print join '|', @player_rec;
See what happens. Note that split's first argument is either a string containing a single chr(32) (space), or a regex. Your string is seen as a regex. The regex matches either nothing or nothing, and thus matches at every position.

Consider DBIx::Simple, by the way.

Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }

Replies are listed 'Best First'.
Re^2: DBI reports too many bind variables
by davidrw (Prior) on May 24, 2005 at 18:00 UTC