On Mon, Dec 05, 2005 at 03:47:29PM +1100, Ron Savage wrote:
>
> o I create the column like this:
> evaluation_timestamp timestamp not null
>
> o I have this value stored in the column: 2005-12-05 08:00:00 in each record
>
> o I try to inflate it with:
> __PACKAGE__ -> has_a
> (
> evaluation_timestamp => 'Time::Piece',
> inflate => sub{scalar Time::Piece ->
> strptime(shift, "%Y-%m-%d %H:%M:%S")},
> );
>
> o I get an error at line 298 of DBD::Oracle V 1.16:
> Field 3 has an Oracle type 187 which is not explicitly supported
>
> Any ideas?
Support for TIMESTAMP columns was added in 1.15 and extended in 1.16.
Please double check that the version of the code that's actually running.
Beyond that, a relevant chunk of DBI trace would help. Say level 4.
Tim.