rename a couple of variables
[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
13=head1 SYNOPSIS
14
15All functionality is provided by L<DBIx::Class::Storage::DBI::Interbase>, see
16that module for details.
17
1ae0a36c 18=cut
19
20# RETURNING ("foo") is broken in ODBC, but RETURNING (foo) works
21sub _quote_column_for_returning {
22 return $_[1];
23}
24
9cd0b325 25sub datetime_parser_type { __PACKAGE__ }
26
323148de 27my $datetime_parser;
9cd0b325 28
29sub parse_datetime {
30 shift;
31 require DateTime::Format::Strptime;
323148de 32 $datetime_parser ||= DateTime::Format::Strptime->new(
9cd0b325 33 pattern => '%F %H:%M:%S',
34 on_error => 'croak',
35 );
323148de 36 $datetime_parser->parse_datetime(shift);
9cd0b325 37}
38
1ae0a36c 391;
40
dff4c3a3 41=head1 AUTHOR
42
43See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
44
45=head1 LICENSE
46
47You may distribute this code under the same terms as Perl itself.
48
49=cut