Solution:
As indicated previously in this thread the culprit was DBI.
After the DBI->connect statement the decimalpoint was changed to decimalcomma, though that's not entirely true as decimal comma was not allowed in the perlcode.
I have solved this by resetting the LC_NUMERIC parameter directly after the connect command
use POSIX qw(locale_h);
.
.
my $dbh = DBI->connect("DBI:ODBC:$dsn") or die "Could not connect to $
+dsn\n";
setlocale(LC_NUMERIC, "C");
.
.
Just hoping that I won't be bitten in the back by some other aspect of locales ;-/
Anyway thanks all for your support and Hey I got to know Devel::Peek and locales along the journey!
---
I would like to change the world but God won't let me have the source code.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.