It starts like a thriller. Paris 23h55. A phone rings. I answer...
asterisk records the call in Postgreql in a "timestamp with timezone" (2017-06-10 21:55:00+02' according to pgadmin).
I try to to print this local time 23:55 with :
my $dbh= DBI->connect(
q!dbi:Pg:dbname=asterisk;host=www.ibm.fr!, 'asterisk','secret')
or die $DBI::errstr;
my $cursor = $dbh->prepare(
"SELECT * FROM asterisk_cdr where id=48000;");
$cursor->execute;
my @row;
if ( @row = $cursor->fetchrow )
{
my $Date =
DateTime::Format::Pg->parse_timestamp_with_time_zone($row[1]) ;
my $Date3=
$Date->clone()->set_time_zone('floating')->set_time_zone( 'Europ
+e/Paris' );
print "$Date==$Date3",$Date3->time_zone_long_name(),
' ',$Date3->hms,$Date->hms,"\n";
}
I get :
2017-06-10T21:55:00==2017-06-10T21:55:00Europe/Paris 21:55:002
+1:55:00
I have done many other trials but I do not success to print 23:55 !!!
What do I miss, o venerable monks ?
PC
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.