Switch cursor accessor to CAG's component_class type for autoloading
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / ODBC / Firebird.pm
CommitLineData
dff4c3a3 1package DBIx::Class::Storage::DBI::ODBC::Firebird;
2
3use strict;
4use warnings;
5use base qw/DBIx::Class::Storage::DBI::InterBase/;
6use mro 'c3';
7
dff4c3a3 8=head1 NAME
9
10DBIx::Class::Storage::DBI::ODBC::Firebird - Driver for using the Firebird RDBMS
11through ODBC
12
d1fc96c7 13=head1 DESCRIPTION
dff4c3a3 14
32323fc2 15Most functionality is provided by L<DBIx::Class::Storage::DBI::Interbase>, see
dff4c3a3 16that module for details.
17
90489c23 18To build the ODBC driver for Firebird on Linux for unixODBC, see:
19
20L<http://www.firebirdnews.org/?p=1324>
21
d1fc96c7 22This driver does not suffer from the nested statement handles across commits
23issue that the L<DBD::InterBase|DBIx::Class::Storage::DBI::InterBase> based
24driver does. This makes it more suitable for long running processes such as
25under L<Catalyst>.
26
1ae0a36c 27=cut
28
c5827074 29# XXX seemingly no equivalent to ib_time_all from DBD::InterBase via ODBC
32323fc2 30sub connect_call_datetime_setup { 1 }
1ae0a36c 31
9633951d 32# we don't need DBD::InterBase-specific initialization
33sub _init { 1 }
34
35# ODBC uses dialect 3 by default, good
36sub _set_sql_dialect { 1 }
37
5c6ed0b5 38# releasing savepoints doesn't work, but that shouldn't matter
39sub _svp_release { 1 }
40
c5827074 41sub datetime_parser_type {
42 'DBIx::Class::Storage::DBI::ODBC::Firebird::DateTime::Format'
43}
44
45package # hide from PAUSE
46 DBIx::Class::Storage::DBI::ODBC::Firebird::DateTime::Format;
47
48# inherit parse/format date
49our @ISA = 'DBIx::Class::Storage::DBI::InterBase::DateTime::Format';
50
51my $timestamp_format = '%Y-%m-%d %H:%M:%S'; # %F %T, no fractional part
52my $timestamp_parser;
53
54sub parse_datetime {
55 shift;
56 require DateTime::Format::Strptime;
57 $timestamp_parser ||= DateTime::Format::Strptime->new(
58 pattern => $timestamp_format,
59 on_error => 'croak',
60 );
61 return $timestamp_parser->parse_datetime(shift);
62}
63
64sub format_datetime {
65 shift;
66 require DateTime::Format::Strptime;
67 $timestamp_parser ||= DateTime::Format::Strptime->new(
68 pattern => $timestamp_format,
69 on_error => 'croak',
70 );
71 return $timestamp_parser->format_datetime(shift);
72}
73
1ae0a36c 741;
75
32323fc2 76=head1 CAVEATS
77
a499b173 78=over 4
79
80=item *
81
32323fc2 82This driver (unlike L<DBD::InterBase>) does not currently support reading or
83writing C<TIMESTAMP> values with sub-second precision.
84
a499b173 85=back
86
dff4c3a3 87=head1 AUTHOR
88
89See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
90
91=head1 LICENSE
92
93You may distribute this code under the same terms as Perl itself.
94
95=cut