Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Excerpted from my apache logs, I'm seeing:

DEBUG: $self->_process_cc_pre_confirm() says the sql.get_new_subscribe +r query reads: $VAR1 = 'SELECT lsmb_acct_id, addr1, addr2, city, state, zip, billing_ +plan, billing_cycle, fname, lname, email, phone FROM accounts a LEFT +JOIN account_users u ON a.account_code = u.account_code WHERE account +_billing_contact = \\\\\\'yes\\\\\\' AND a.account_code = ?'; Uncaught exception from user code: \tDBD::Pg::st execute failed: called with 1 bind variables when 0 are +needed at . . . line 569.
This log noise is thrown by code reading:

my $sql = $self->{'cfg'}->param("sql.get_new_subscriber"); $self->log('DEBUG','$self->_process_cc_pre_confirm() says the sql.ge +t_new_subscriber query reads: ',$sql); my $sth = $self->{'dbh'}->prepare($sql); $sth->execute($self->{'s'}->param('account_code')); my $subscriber = $sth->fetchrow_hashref();
My configuration file reads in relevant part:

get_new_subscriber='SELECT lsmb_acct_id, addr1, addr2, city, state, zi +p, billing_plan, billing_cycle, fname, lname, email, phone FROM accou +nts a LEFT JOIN account_users u ON a.account_code = u.account_code WH +ERE account_billing_contact = \'yes\' AND a.account_code = ?'
I have no idea why my quoted value for account_billing_contact gets so thoroughly escaped in my logs. Nor any idea why the need for my bind variable is not recognized. Though I suspect the two questions may be related somehow.

Any thoughts on how to resolve this issue?

-- Hugh

if( $lal && $lol ) { $life++; }
if( $insurance->rationing() ) { $people->die(); }

In reply to A bind variable is really needed here . . . by hesco

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (5)
As of 2024-04-25 14:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found