add quote_names connect_info option
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / InterBase.pm
CommitLineData
88a8d0fa 1package DBIx::Class::Storage::DBI::InterBase;
2
88a8d0fa 3use strict;
4use warnings;
bab40dee 5use base qw/DBIx::Class::Storage::DBI/;
88a8d0fa 6use mro 'c3';
6298a324 7use List::Util 'first';
ed7ab0f4 8use Try::Tiny;
fd323bf1 9use namespace::clean;
88a8d0fa 10
90489c23 11=head1 NAME
12
13DBIx::Class::Storage::DBI::InterBase - Driver for the Firebird RDBMS
14
15=head1 DESCRIPTION
16
95570280 17This class implements autoincrements for Firebird using C<RETURNING> as well as
d5dedbd6 18L<auto_nextval|DBIx::Class::ResultSource/auto_nextval> and provides
19L<DBIx::Class::InflateColumn::DateTime> support.
90489c23 20
dd2109ee 21You need to use either the
22L<disable_sth_caching|DBIx::Class::Storage::DBI/disable_sth_caching> option or
23L</connect_call_use_softcommit> (see L</CAVEATS>) for your code to function
47ec67c3 24correctly with this driver. Otherwise you will likely get bizarre error messages
d1fc96c7 25such as C<no statement executing>. The alternative is to use the
26L<ODBC|DBIx::Class::Storage::DBI::ODBC::Firebird> driver, which is more suitable
27for long running processes such as under L<Catalyst>.
90489c23 28
c5827074 29To turn on L<DBIx::Class::InflateColumn::DateTime> support, see
30L</connect_call_datetime_setup>.
32323fc2 31
90489c23 32=cut
33
bbdda281 34# set default
35__PACKAGE__->_use_insert_returning (1);
6a247f33 36__PACKAGE__->sql_limit_dialect ('FirstSkip');
2b8cc2f2 37__PACKAGE__->sql_quote_char ('"');
bab40dee 38
e1958268 39sub _sequence_fetch {
40 my ($self, $nextval, $sequence) = @_;
41
07cda1c5 42 $self->throw_exception("Can only fetch 'nextval' for a sequence")
43 if $nextval !~ /^nextval$/i;
e1958268 44
45 $self->throw_exception('No sequence to fetch') unless $sequence;
fd323bf1 46
07cda1c5 47 my ($val) = $self->_get_dbh->selectrow_array(sprintf
48 'SELECT GEN_ID(%s, 1) FROM rdb$database',
49 $self->sql_maker->_quote($sequence)
50 );
e1958268 51
52 return $val;
fd323bf1 53}
e1958268 54
55sub _dbh_get_autoinc_seq {
56 my ($self, $dbh, $source, $col) = @_;
57
58 my $table_name = $source->from;
59 $table_name = $$table_name if ref $table_name;
60 $table_name = $self->sql_maker->quote_char ? $table_name : uc($table_name);
61
62 local $dbh->{LongReadLen} = 100000;
63 local $dbh->{LongTruncOk} = 1;
64
65 my $sth = $dbh->prepare(<<'EOF');
66SELECT t.rdb$trigger_source
67FROM rdb$triggers t
68WHERE t.rdb$relation_name = ?
69AND t.rdb$system_flag = 0 -- user defined
70AND t.rdb$trigger_type = 1 -- BEFORE INSERT
71EOF
72 $sth->execute($table_name);
73
74 while (my ($trigger) = $sth->fetchrow_array) {
75 my @trig_cols = map {
76 /^"([^"]+)/ ? $1 : uc($1)
77 } $trigger =~ /new\.("?\w+"?)/ig;
78
79 my ($quoted, $generator) = $trigger =~
80/(?:gen_id\s* \( \s* |next \s* value \s* for \s*)(")?(\w+)/ix;
81
82 if ($generator) {
83 $generator = uc $generator unless $quoted;
84
85 return $generator
6298a324 86 if first {
e1958268 87 $self->sql_maker->quote_char ? ($_ eq $col) : (uc($_) eq uc($col))
88 } @trig_cols;
89 }
90 }
91
92 return undef;
93}
94
32323fc2 95sub _svp_begin {
96 my ($self, $name) = @_;
97
98 $self->_get_dbh->do("SAVEPOINT $name");
99}
100
101sub _svp_release {
102 my ($self, $name) = @_;
103
104 $self->_get_dbh->do("RELEASE SAVEPOINT $name");
105}
106
107sub _svp_rollback {
108 my ($self, $name) = @_;
109
110 $self->_get_dbh->do("ROLLBACK TO SAVEPOINT $name")
111}
112
113sub _ping {
114 my $self = shift;
115
116 my $dbh = $self->_dbh or return 0;
117
118 local $dbh->{RaiseError} = 1;
ecdf1ac8 119 local $dbh->{PrintError} = 0;
32323fc2 120
52b420dd 121 return try {
32323fc2 122 $dbh->do('select 1 from rdb$database');
52b420dd 123 1;
ed7ab0f4 124 } catch {
52b420dd 125 0;
32323fc2 126 };
32323fc2 127}
128
9633951d 129# We want dialect 3 for new features and quoting to work, DBD::InterBase uses
130# dialect 1 (interbase compat) by default.
131sub _init {
132 my $self = shift;
133 $self->_set_sql_dialect(3);
134}
135
136sub _set_sql_dialect {
137 my $self = shift;
138 my $val = shift || 3;
139
140 my $dsn = $self->_dbi_connect_info->[0];
141
142 return if ref($dsn) eq 'CODE';
143
144 if ($dsn !~ /ib_dialect=/) {
145 $self->_dbi_connect_info->[0] = "$dsn;ib_dialect=$val";
146 my $connected = defined $self->_dbh;
147 $self->disconnect;
148 $self->ensure_connected if $connected;
149 }
150}
151
6d766626 152sub _get_server_version {
8f0a1e07 153 my $self = shift;
154
b22700c4 155 return $self->next::method(@_) if ref $self ne __PACKAGE__;
156
8f0a1e07 157 local $SIG{__WARN__} = sub {}; # silence warning due to bug in DBD::InterBase
158
159 return $self->next::method(@_);
160}
161
dd2109ee 162=head2 connect_call_use_softcommit
163
164Used as:
165
166 on_connect_call => 'use_softcommit'
167
168In L<connect_info|DBIx::Class::Storage::DBI/connect_info> to set the
169L<DBD::InterBase> C<ib_softcommit> option.
170
171You need either this option or C<< disable_sth_caching => 1 >> for
47ec67c3 172L<DBIx::Class> code to function correctly (otherwise you may get C<no statement
d1fc96c7 173executing> errors.) Or use the L<ODBC|DBIx::Class::Storage::DBI::ODBC::Firebird>
174driver.
dd2109ee 175
176The downside of using this option is that your process will B<NOT> see UPDATEs,
177INSERTs and DELETEs from other processes for already open statements.
178
179=cut
180
181sub connect_call_use_softcommit {
a499b173 182 my $self = shift;
183
184 $self->_dbh->{ib_softcommit} = 1;
a499b173 185}
186
32323fc2 187=head2 connect_call_datetime_setup
9cd0b325 188
32323fc2 189Used as:
9cd0b325 190
32323fc2 191 on_connect_call => 'datetime_setup'
192
f0f8ac86 193In L<connect_info|DBIx::Class::Storage::DBI/connect_info> to set the date and
194timestamp formats using:
32323fc2 195
196 $dbh->{ib_time_all} = 'ISO';
197
198See L<DBD::InterBase> for more details.
199
200The C<TIMESTAMP> data type supports up to 4 digits after the decimal point for
201second precision. The full precision is used.
202
c5827074 203The C<DATE> data type stores the date portion only, and it B<MUST> be declared
204with:
205
206 data_type => 'date'
207
208in your Result class.
209
210Timestamp columns can be declared with either C<datetime> or C<timestamp>.
211
32323fc2 212You will need the L<DateTime::Format::Strptime> module for inflation to work.
213
214For L<DBIx::Class::Storage::DBI::ODBC::Firebird>, this is a noop and sub-second
215precision is not currently available.
216
217=cut
218
219sub connect_call_datetime_setup {
220 my $self = shift;
221
222 $self->_get_dbh->{ib_time_all} = 'ISO';
9cd0b325 223}
224
c5827074 225sub datetime_parser_type {
226 'DBIx::Class::Storage::DBI::InterBase::DateTime::Format'
227}
32323fc2 228
c5827074 229package # hide from PAUSE
230 DBIx::Class::Storage::DBI::InterBase::DateTime::Format;
32323fc2 231
c5827074 232my $timestamp_format = '%Y-%m-%d %H:%M:%S.%4N'; # %F %T
233my $date_format = '%Y-%m-%d';
234
235my ($timestamp_parser, $date_parser);
236
237sub parse_datetime {
238 shift;
239 require DateTime::Format::Strptime;
240 $timestamp_parser ||= DateTime::Format::Strptime->new(
241 pattern => $timestamp_format,
242 on_error => 'croak',
243 );
244 return $timestamp_parser->parse_datetime(shift);
245}
246
247sub format_datetime {
248 shift;
249 require DateTime::Format::Strptime;
250 $timestamp_parser ||= DateTime::Format::Strptime->new(
251 pattern => $timestamp_format,
252 on_error => 'croak',
253 );
254 return $timestamp_parser->format_datetime(shift);
255}
256
257sub parse_date {
258 shift;
259 require DateTime::Format::Strptime;
260 $date_parser ||= DateTime::Format::Strptime->new(
261 pattern => $date_format,
262 on_error => 'croak',
263 );
264 return $date_parser->parse_datetime(shift);
265}
266
267sub format_date {
268 shift;
269 require DateTime::Format::Strptime;
270 $date_parser ||= DateTime::Format::Strptime->new(
271 pattern => $date_format,
32323fc2 272 on_error => 'croak',
273 );
c5827074 274 return $date_parser->format_datetime(shift);
9cd0b325 275}
276
145b2a3d 2771;
90489c23 278
279=head1 CAVEATS
280
281=over 4
282
283=item *
284
dd2109ee 285with L</connect_call_use_softcommit>, you will not be able to see changes made
286to data in other processes. If this is an issue, use
47ec67c3 287L<disable_sth_caching|DBIx::Class::Storage::DBI/disable_sth_caching> as a
288workaround for the C<no statement executing> errors, this of course adversely
289affects performance.
dd2109ee 290
d1fc96c7 291Alternately, use the L<ODBC|DBIx::Class::Storage::DBI::ODBC::Firebird> driver.
292
dd2109ee 293=item *
294
e1958268 295C<last_insert_id> support by default only works for Firebird versions 2 or
296greater, L<auto_nextval|DBIx::Class::ResultSource/auto_nextval> however should
297work with earlier versions.
90489c23 298
47ec67c3 299=item *
300
d1fc96c7 301Sub-second precision for TIMESTAMPs is not currently available when using the
302L<ODBC|DBIx::Class::Storage::DBI::ODBC::Firebird> driver.
47ec67c3 303
90489c23 304=back
305
306=head1 AUTHOR
307
308See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
309
310=head1 LICENSE
311
312You may distribute this code under the same terms as Perl itself.
313
314=cut