in reply to DBD-InterBase: different date/time formats

The DBD::Interbase::FAQ perldoc has a section on "How can I use the date/time formatting attributes?" To summarize, you can specify the format as an attribute when preparing the statement.
my $sth = $dbh->prepare( $query, { ib_timeformat => '%e.%m.%G %H:%M:%S +' } )
should get you pretty close to what you want; experiment with the format string as you wish. (I've done plenty of DBI coding, but haven't used DBD::Interbase yet.)