Backout sybase changes
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / SQLite.pm
CommitLineData
843f8ecd 1package DBIx::Class::Storage::DBI::SQLite;
2
3use strict;
4use warnings;
2ad62d97 5
6use base qw/DBIx::Class::Storage::DBI/;
7use mro 'c3';
8
c9d2e0a2 9use POSIX 'strftime';
10use File::Copy;
79923569 11use File::Spec;
843f8ecd 12
d4f16b21 13sub _dbh_last_insert_id {
14 my ($self, $dbh, $source, $col) = @_;
15 $dbh->func('last_insert_rowid');
843f8ecd 16}
17
c9d2e0a2 18sub backup
19{
8795fefb 20 my ($self, $dir) = @_;
21 $dir ||= './';
c9d2e0a2 22
23 ## Where is the db file?
12c9beea 24 my $dsn = $self->_dbi_connect_info()->[0];
c9d2e0a2 25
26 my $dbname = $1 if($dsn =~ /dbname=([^;]+)/);
27 if(!$dbname)
28 {
29 $dbname = $1 if($dsn =~ /^dbi:SQLite:(.+)$/i);
30 }
31 $self->throw_exception("Cannot determine name of SQLite db file")
32 if(!$dbname || !-f $dbname);
33
34# print "Found database: $dbname\n";
79923569 35# my $dbfile = file($dbname);
8795fefb 36 my ($vol, $dbdir, $file) = File::Spec->splitpath($dbname);
79923569 37# my $file = $dbfile->basename();
a32c360c 38 $file = strftime("%Y-%m-%d-%H_%M_%S", localtime()) . $file;
c9d2e0a2 39 $file = "B$file" while(-f $file);
8795fefb 40
41 mkdir($dir) unless -f $dir;
42 my $backupfile = File::Spec->catfile($dir, $file);
43
44 my $res = copy($dbname, $backupfile);
c9d2e0a2 45 $self->throw_exception("Backup failed! ($!)") if(!$res);
46
8795fefb 47 return $backupfile;
c9d2e0a2 48}
49
40f75181 50sub datetime_parser_type { return "DateTime::Format::SQLite"; }
51
843f8ecd 521;
53
75d07914 54=head1 NAME
843f8ecd 55
8e766a13 56DBIx::Class::Storage::DBI::SQLite - Automatic primary key class for SQLite
843f8ecd 57
58=head1 SYNOPSIS
59
60 # In your table classes
77254782 61 __PACKAGE__->load_components(qw/PK::Auto Core/);
843f8ecd 62 __PACKAGE__->set_primary_key('id');
63
64=head1 DESCRIPTION
65
66This class implements autoincrements for SQLite.
67
68=head1 AUTHORS
69
70Matt S. Trout <mst@shadowcatsystems.co.uk>
71
72=head1 LICENSE
73
74You may distribute this code under the same terms as Perl itself.
75
76=cut