Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: identifier too long error

by thezip (Vicar)
on Nov 04, 2008 at 00:35 UTC ( [id://721247]=note: print w/replies, xml ) Need Help??


in reply to identifier too long error

  1. This is not a Perl question.
  2. If it were, you could use DBI->trace($level, $filename) to dump the trace info into a file for debugging purposes.

What can be asserted without proof can be dismissed without proof. - Christopher Hitchens

Replies are listed 'Best First'.
Re^2: identifier too long error
by grashoper (Monk) on Nov 04, 2008 at 00:37 UTC
    thezip does this mean its a sql problem?

      Pretty much.

      Somewhere near the top of your script, do this:

      my $trace_level = 1; my $trace_file = 'tracefile.txt'; DBI->trace($trace_level, $trace_file); # ... then the rest of your script
      You might want to delete the $trace_file prior to each run. This will make it easier to find where your problem is.

      What can be asserted without proof can be dismissed without proof. - Christopher Hitchens

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://721247]
help
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found