![]() |
|
Problems? Is your data what you think it is? | |
PerlMonks |
Debugging DBD::Oracleby cLive ;-) (Prior) |
on Oct 15, 2015 at 20:07 UTC ( #1145027=perlquestion: print w/replies, xml ) | Need Help?? |
cLive ;-) has asked for the wisdom of the Perl Monks concerning the following question: So, we're migrating servers, and another dev noticed a minor bug in yasql, which I've traced back to DBD::Oracle. What is happening is when you DESC TABLENAME is that the precision of VARCHAR2 fields are coming back as being 4 times what it should be. I've narrowed it down to an error in the values in $sth->{PRECISION}. What I can't work out though is where this is set. I have a feeling the issue might be in DBD::Oracle::st::_prepare call, but I'm not quite sure what's going on. Using Data::Dumper, $sth looks like an empty hashref. If that's the case though, why does $sth->{PRECISION} return an arrayref of numbers? Is the hashref call overloaded in DBI as a method or something? I've not seen that before.
This code demonstrates the issue:
When run under v1.64, output is 10. When run under v1.74, output is 40. Thoughts? DBD::Oracle bug to report? Edit: I've reported the bug, but still welcome insights on how the hashref call turns into a method call (I hate these magic bits of code sometimes :D) FINAL EDIT: We worked out the issue, at last. When migrating servers, the DBAs accidentally added a new environment variable to the /oracle/#VERSION#/CLIENT.env file that set NLS_LANG to AMERICAN_AMERICA.UTF8. The database, however, is a legacy DB that uses WE8ISO8859P1. So, yasql was expecting UTF8, but the DB wasn't supplying it.
Back to
Seekers of Perl Wisdom
|
|