in reply to Re: DBD::Pg problems
in thread DBD::Pg problems

What's the data type of users.user_password in your database? Apparently DBD::prepare thinks it's not a char(n).

Here's another possibility. This line: % } elsif ($password1 != $password2) {should probably be: % } elsif ($password1 ne $password2) {The numeric comparison makes me suspicious. Could it be causing DBD::execute to conclude that it doesn't need to be wrapped in quotes?

Replies are listed 'Best First'.
Re: Re: Re: DBD::Pg problems
by dstar (Scribe) on Aug 10, 2001 at 20:49 UTC
    That was it exactly. The worst part is, I looked at it last night and thought 'That isn't right'. Too much time awake, not enough coffee last night. Thanks.