DBD-Informix
    
    
  
  
  
view release on metacpan or search on metacpan
lib/DBD/Informix/Summary.pm view on Meta::CPAN
Strings can be concatenated using the C<||> operator.
=head2 Date Data Handling
There are two basic date/time handling types: DATE and DATETIME.
DATE supports dates in the range 01/01/0001 through 31/12/9999.
It is fairly flexible in its input and output formats.  Internally,
it is represented by the number of days since December 31 1899,
so January 1 1900 was day 1.  It does not understand the calendric
gyrations of 1752, 1582-4, or the early parts of the first millenium,
and imposes the calendar as of 1970-01-01 on these earlier times.
DATETIME has to be qualified by two components from the set:
  YEAR MONTH DAY HOUR MINUTE SECOND FRACTION FRACTION(n) for n = 1..5
These store a date using ISO 8601 format for the constants.
For example, DATE("29/02/2000") is equivalent to:
  DATETIME("2000-02-29") YEAR TO DAY,
( run in 0.617 second using v1.01-cache-2.11-cpan-c333fce770f )