
Class::DBI::Plugin::DateFormat::Oracle - Extension to Class::DBI for Oracle date fields.

This documentation refers to Class::DBI::Plugin::DateFormat::Oracle version 0.01

package YourBase::CDBI;
use base 'Class::DBI';
__PACKAGE__->connection('dbi:Oracle:sid', user, pwd);
__PACKAGE__->set_nls_date_format('YY/MM/DD HH24:MI:SS');
$format = __PACKAGE__->get_nls_date_format;

This module is Extension to Class::DBI for Oracle date fields.

__PACKAGE__->set_nls_date_format('YY/MM/DD HH24:MI:SS');
This method sets Oracle date field's format. This method execute "ALTER SESSION".
$format = __PACKAGE__->get_nls_date_format;
This method gets Oracle date field's format.


Class::DBI's Cookbook
http://cdbi.dcmanaged.com/wiki/Working_With_Oracle_Date_Fields
Refer to the Oracle documentation for valid date formats.

There are no known bugs in this module. Please report problems to Atsushi Kobayashi (<nekokak@cpan.org>) Patches are welcome.

Atsushi Kobayashi, <nekokak@cpan.org>

Copyright (C) 2005 by Atsushi Kobayashi (<nekokak@cpan.org>). All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.