Re: Understanding why this "fixes" my perlaccess script

2002-07-04 Thread Perrin Harkins
Jason Wilkes wrote: > So far so good, and all works well. Except for one > user id (actually id=333), which causes an "internal > server error". If I put print debugging lines in - > everything works (even for user 333). If I take them > out again all other users work fine except 333. > Can anybod

RE: Understanding why this "fixes" my perlaccess script

2002-07-04 Thread Jason Wilkes
Levon, Thanks for the swift reply - but nope - no different. --- Levon Barker <[EMAIL PROTECTED]> wrote: > Not sure but I would try changing the query: > > my $sth = $dbh->prepare(" > SELECT id from session > WHERE field = ? > "); >

RE: Understanding why this "fixes" my perlaccess script

2002-07-04 Thread Levon Barker
Not sure but I would try changing the query: my $sth = $dbh->prepare(" SELECT id from session WHERE field = ? "); $sth->bind_param( 1, $SessionID ); $sth->execute; That might help. -Original Message- Fro