fix RETURNING for empty INSERT
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / InterBase.pm
CommitLineData
88a8d0fa 1package DBIx::Class::Storage::DBI::InterBase;
2
145b2a3d 3# partly stolen from DBIx::Class::Storage::DBI::MSSQL
88a8d0fa 4
5use strict;
6use warnings;
637d2fae 7use base qw/DBIx::Class::Storage::DBI/;
88a8d0fa 8use mro 'c3';
88a8d0fa 9use List::Util();
10
11__PACKAGE__->mk_group_accessors(simple => qw/
2680ffe5 12 _auto_incs
88a8d0fa 13/);
14
90489c23 15=head1 NAME
16
17DBIx::Class::Storage::DBI::InterBase - Driver for the Firebird RDBMS
18
19=head1 DESCRIPTION
20
95570280 21This class implements autoincrements for Firebird using C<RETURNING> as well as
22L<auto_nextval|DBIx::Class::ResultSource/auto_nextval> sets the limit dialect to
23C<FIRST X SKIP X> and provides L<DBIx::Class::InflateColumn::DateTime> support.
90489c23 24
dd2109ee 25You need to use either the
26L<disable_sth_caching|DBIx::Class::Storage::DBI/disable_sth_caching> option or
27L</connect_call_use_softcommit> (see L</CAVEATS>) for your code to function
47ec67c3 28correctly with this driver. Otherwise you will likely get bizarre error messages
29such as C<no statement executing>.
dd2109ee 30
90489c23 31For ODBC support, see L<DBIx::Class::Storage::DBI::ODBC::Firebird>.
32
c5827074 33To turn on L<DBIx::Class::InflateColumn::DateTime> support, see
34L</connect_call_datetime_setup>.
32323fc2 35
90489c23 36=cut
37
88a8d0fa 38sub _prep_for_execute {
39 my $self = shift;
40 my ($op, $extra_bind, $ident, $args) = @_;
41
88a8d0fa 42 if ($op eq 'insert') {
95570280 43 $self->_auto_incs([]);
44
28d28903 45 my %pk;
0a145954 46 @pk{$ident->primary_columns} = ();
6e8d182b 47
1ae0a36c 48 my @auto_inc_cols = grep {
49 my $inserting = $args->[0]{$_};
145b2a3d 50
6e8d182b 51 ($ident->column_info($_)->{is_auto_increment}
52 || exists $pk{$_})
53 && (
1ae0a36c 54 (not defined $inserting)
55 ||
2680ffe5 56 (ref $inserting eq 'SCALAR' && $$inserting =~ /^null\z/i)
1ae0a36c 57 )
58 } $ident->columns;
88a8d0fa 59
145b2a3d 60 if (@auto_inc_cols) {
1696e04f 61 $args->[1]{returning} = \@auto_inc_cols;
145b2a3d 62
2680ffe5 63 $self->_auto_incs->[0] = \@auto_inc_cols;
145b2a3d 64 }
88a8d0fa 65 }
66
1696e04f 67 return $self->next::method(@_);
1ae0a36c 68}
69
88a8d0fa 70sub _execute {
71 my $self = shift;
72 my ($op) = @_;
73
74 my ($rv, $sth, @bind) = $self->dbh_do($self->can('_dbh_execute'), @_);
75
2680ffe5 76 if ($op eq 'insert' && $self->_auto_incs) {
88a8d0fa 77 local $@;
145b2a3d 78 my (@auto_incs) = eval {
79 local $SIG{__WARN__} = sub {};
80 $sth->fetchrow_array
81 };
2680ffe5 82 $self->_auto_incs->[1] = \@auto_incs;
88a8d0fa 83 $sth->finish;
84 }
85
86 return wantarray ? ($rv, $sth, @bind) : $rv;
87}
88
e1958268 89sub _sequence_fetch {
90 my ($self, $nextval, $sequence) = @_;
91
92 if ($nextval ne 'nextval') {
93 $self->throw_exception("Can only fetch 'nextval' for a sequence");
94 }
95
96 $self->throw_exception('No sequence to fetch') unless $sequence;
97
98 my ($val) = $self->_get_dbh->selectrow_array(
99'SELECT GEN_ID(' . $self->sql_maker->_quote($sequence) .
100', 1) FROM rdb$database');
101
102 return $val;
103}
104
105sub _dbh_get_autoinc_seq {
106 my ($self, $dbh, $source, $col) = @_;
107
108 my $table_name = $source->from;
109 $table_name = $$table_name if ref $table_name;
110 $table_name = $self->sql_maker->quote_char ? $table_name : uc($table_name);
111
112 local $dbh->{LongReadLen} = 100000;
113 local $dbh->{LongTruncOk} = 1;
114
115 my $sth = $dbh->prepare(<<'EOF');
116SELECT t.rdb$trigger_source
117FROM rdb$triggers t
118WHERE t.rdb$relation_name = ?
119AND t.rdb$system_flag = 0 -- user defined
120AND t.rdb$trigger_type = 1 -- BEFORE INSERT
121EOF
122 $sth->execute($table_name);
123
124 while (my ($trigger) = $sth->fetchrow_array) {
125 my @trig_cols = map {
126 /^"([^"]+)/ ? $1 : uc($1)
127 } $trigger =~ /new\.("?\w+"?)/ig;
128
129 my ($quoted, $generator) = $trigger =~
130/(?:gen_id\s* \( \s* |next \s* value \s* for \s*)(")?(\w+)/ix;
131
132 if ($generator) {
133 $generator = uc $generator unless $quoted;
134
135 return $generator
136 if List::Util::first {
137 $self->sql_maker->quote_char ? ($_ eq $col) : (uc($_) eq uc($col))
138 } @trig_cols;
139 }
140 }
141
142 return undef;
143}
144
145b2a3d 145sub last_insert_id {
146 my ($self, $source, @cols) = @_;
147 my @result;
88a8d0fa 148
145b2a3d 149 my %auto_incs;
2680ffe5 150 @auto_incs{ @{ $self->_auto_incs->[0] } } =
151 @{ $self->_auto_incs->[1] };
145b2a3d 152
153 push @result, $auto_incs{$_} for @cols;
154
155 return @result;
156}
157
95570280 158sub insert {
159 my $self = shift;
160
161 my $updated_cols = $self->next::method(@_);
162
163 if ($self->_auto_incs->[0]) {
164 my %auto_incs;
165 @auto_incs{ @{ $self->_auto_incs->[0] } } = @{ $self->_auto_incs->[1] };
166
167 $updated_cols = { %$updated_cols, %auto_incs };
168 }
169
170 return $updated_cols;
171}
172
145b2a3d 173# this sub stolen from DB2
88a8d0fa 174
145b2a3d 175sub _sql_maker_opts {
176 my ( $self, $opts ) = @_;
177
178 if ( $opts ) {
179 $self->{_sql_maker_opts} = { %$opts };
180 }
181
182 return { limit_dialect => 'FirstSkip', %{$self->{_sql_maker_opts}||{}} };
183}
184
32323fc2 185sub _svp_begin {
186 my ($self, $name) = @_;
187
188 $self->_get_dbh->do("SAVEPOINT $name");
189}
190
191sub _svp_release {
192 my ($self, $name) = @_;
193
194 $self->_get_dbh->do("RELEASE SAVEPOINT $name");
195}
196
197sub _svp_rollback {
198 my ($self, $name) = @_;
199
200 $self->_get_dbh->do("ROLLBACK TO SAVEPOINT $name")
201}
202
203sub _ping {
204 my $self = shift;
205
206 my $dbh = $self->_dbh or return 0;
207
208 local $dbh->{RaiseError} = 1;
209
210 eval {
211 $dbh->do('select 1 from rdb$database');
212 };
213
214 return $@ ? 0 : 1;
215}
216
9633951d 217# We want dialect 3 for new features and quoting to work, DBD::InterBase uses
218# dialect 1 (interbase compat) by default.
219sub _init {
220 my $self = shift;
221 $self->_set_sql_dialect(3);
222}
223
224sub _set_sql_dialect {
225 my $self = shift;
226 my $val = shift || 3;
227
228 my $dsn = $self->_dbi_connect_info->[0];
229
230 return if ref($dsn) eq 'CODE';
231
232 if ($dsn !~ /ib_dialect=/) {
233 $self->_dbi_connect_info->[0] = "$dsn;ib_dialect=$val";
234 my $connected = defined $self->_dbh;
235 $self->disconnect;
236 $self->ensure_connected if $connected;
237 }
238}
239
dd2109ee 240=head2 connect_call_use_softcommit
241
242Used as:
243
244 on_connect_call => 'use_softcommit'
245
246In L<connect_info|DBIx::Class::Storage::DBI/connect_info> to set the
247L<DBD::InterBase> C<ib_softcommit> option.
248
249You need either this option or C<< disable_sth_caching => 1 >> for
47ec67c3 250L<DBIx::Class> code to function correctly (otherwise you may get C<no statement
251executing> errors.)
dd2109ee 252
253The downside of using this option is that your process will B<NOT> see UPDATEs,
254INSERTs and DELETEs from other processes for already open statements.
255
256=cut
257
258sub connect_call_use_softcommit {
a499b173 259 my $self = shift;
260
261 $self->_dbh->{ib_softcommit} = 1;
a499b173 262}
263
32323fc2 264=head2 connect_call_datetime_setup
9cd0b325 265
32323fc2 266Used as:
9cd0b325 267
32323fc2 268 on_connect_call => 'datetime_setup'
269
f0f8ac86 270In L<connect_info|DBIx::Class::Storage::DBI/connect_info> to set the date and
271timestamp formats using:
32323fc2 272
273 $dbh->{ib_time_all} = 'ISO';
274
275See L<DBD::InterBase> for more details.
276
277The C<TIMESTAMP> data type supports up to 4 digits after the decimal point for
278second precision. The full precision is used.
279
c5827074 280The C<DATE> data type stores the date portion only, and it B<MUST> be declared
281with:
282
283 data_type => 'date'
284
285in your Result class.
286
287Timestamp columns can be declared with either C<datetime> or C<timestamp>.
288
32323fc2 289You will need the L<DateTime::Format::Strptime> module for inflation to work.
290
291For L<DBIx::Class::Storage::DBI::ODBC::Firebird>, this is a noop and sub-second
292precision is not currently available.
293
294=cut
295
296sub connect_call_datetime_setup {
297 my $self = shift;
298
299 $self->_get_dbh->{ib_time_all} = 'ISO';
9cd0b325 300}
301
c5827074 302sub datetime_parser_type {
303 'DBIx::Class::Storage::DBI::InterBase::DateTime::Format'
304}
32323fc2 305
c5827074 306package # hide from PAUSE
307 DBIx::Class::Storage::DBI::InterBase::DateTime::Format;
32323fc2 308
c5827074 309my $timestamp_format = '%Y-%m-%d %H:%M:%S.%4N'; # %F %T
310my $date_format = '%Y-%m-%d';
311
312my ($timestamp_parser, $date_parser);
313
314sub parse_datetime {
315 shift;
316 require DateTime::Format::Strptime;
317 $timestamp_parser ||= DateTime::Format::Strptime->new(
318 pattern => $timestamp_format,
319 on_error => 'croak',
320 );
321 return $timestamp_parser->parse_datetime(shift);
322}
323
324sub format_datetime {
325 shift;
326 require DateTime::Format::Strptime;
327 $timestamp_parser ||= DateTime::Format::Strptime->new(
328 pattern => $timestamp_format,
329 on_error => 'croak',
330 );
331 return $timestamp_parser->format_datetime(shift);
332}
333
334sub parse_date {
335 shift;
336 require DateTime::Format::Strptime;
337 $date_parser ||= DateTime::Format::Strptime->new(
338 pattern => $date_format,
339 on_error => 'croak',
340 );
341 return $date_parser->parse_datetime(shift);
342}
343
344sub format_date {
345 shift;
346 require DateTime::Format::Strptime;
347 $date_parser ||= DateTime::Format::Strptime->new(
348 pattern => $date_format,
32323fc2 349 on_error => 'croak',
350 );
c5827074 351 return $date_parser->format_datetime(shift);
9cd0b325 352}
353
145b2a3d 3541;
90489c23 355
356=head1 CAVEATS
357
358=over 4
359
360=item *
361
dd2109ee 362with L</connect_call_use_softcommit>, you will not be able to see changes made
363to data in other processes. If this is an issue, use
47ec67c3 364L<disable_sth_caching|DBIx::Class::Storage::DBI/disable_sth_caching> as a
365workaround for the C<no statement executing> errors, this of course adversely
366affects performance.
dd2109ee 367
368=item *
369
e1958268 370C<last_insert_id> support by default only works for Firebird versions 2 or
371greater, L<auto_nextval|DBIx::Class::ResultSource/auto_nextval> however should
372work with earlier versions.
90489c23 373
47ec67c3 374=item *
375
376Sub-second precision for TIMESTAMPs is not currently available with ODBC.
377
90489c23 378=back
379
380=head1 AUTHOR
381
382See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
383
384=head1 LICENSE
385
386You may distribute this code under the same terms as Perl itself.
387
388=cut