- rename ResultSetInstance class to ResultSetProxy
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / DB.pm
1 package DBIx::Class::DB;
2
3 use base qw/DBIx::Class/;
4 use DBIx::Class::Schema;
5 use DBIx::Class::Storage::DBI;
6 use DBIx::Class::ClassResolver::PassThrough;
7 use DBI;
8
9 __PACKAGE__->load_components(qw/ResultSetProxy/);
10
11 *dbi_commit = \&txn_commit;
12 *dbi_rollback = \&txn_rollback;
13
14 sub storage { shift->schema_instance(@_)->storage; }
15
16 sub resultset_instance {
17   my $class = shift;
18   my $source = $class->result_source_instance;
19   if ($source->result_class ne $class) {
20     $source = $source->new($source);
21     $source->result_class($class);
22   }
23   return $source->resultset;
24 }
25
26 =head1 NAME 
27
28 DBIx::Class::DB - Non-recommended classdata schema component
29
30 =head1 SYNOPSIS
31
32   package MyDB;
33
34   use base qw/DBIx::Class/;
35   __PACKAGE__->load_components('DB');
36
37   __PACKAGE__->connection('dbi:...', 'user', 'pass', \%attrs);
38
39   package MyDB::MyTable;
40
41   use base qw/MyDB/;
42   __PACKAGE__->load_components('Core'); # just load this in MyDB if it will always be there
43
44   ...
45
46 =head1 DESCRIPTION
47
48 This class is designed to support the Class::DBI connection-as-classdata style
49 for DBIx::Class. You are *strongly* recommended to use a DBIx::Class::Schema
50 instead; DBIx::Class::DB will continue to be supported but new development
51 will be focused on Schema-based DBIx::Class setups.
52
53 =head1 METHODS
54
55 =head2 storage
56
57 Sets or gets the storage backend. Defaults to L<DBIx::Class::Storage::DBI>.
58
59 =head2 class_resolver ****DEPRECATED****
60
61 Sets or gets the class to use for resolving a class. Defaults to 
62 L<DBIx::Class::ClassResolver::Passthrough>, which returns whatever you give
63 it. See resolve_class below.
64
65 =cut
66
67 __PACKAGE__->mk_classdata('class_resolver' =>
68                             'DBIx::Class::ClassResolver::PassThrough');
69
70 =head2 connection
71
72   __PACKAGE__->connection($dsn, $user, $pass, $attrs);
73
74 Specifies the arguments that will be passed to DBI->connect(...) to
75 instantiate the class dbh when required.
76
77 =cut
78
79 sub connection {
80   my ($class, @info) = @_;
81   $class->setup_schema_instance unless $class->can('schema_instance');
82   $class->schema_instance->connection(@info);
83 }
84
85 =head2 setup_schema_instance
86
87 Creates a class method ->schema_instance which contains a DBIx::Class::Schema;
88 all class-method operations are proxies through to this object. If you don't
89 call ->connection in your DBIx::Class::DB subclass at load time you *must*
90 call ->setup_schema_instance in order for subclasses to find the schema and
91 register themselves with it.
92
93 =cut
94
95 sub setup_schema_instance {
96   my $class = shift;
97   my $schema = bless({}, 'DBIx::Class::Schema');
98   $class->mk_classdata('schema_instance' => $schema);
99 }
100
101 =head2 txn_begin
102
103 Begins a transaction (does nothing if AutoCommit is off).
104
105 =cut
106
107 sub txn_begin { $_[0]->storage->txn_begin }
108
109 =head2 txn_commit
110
111 Commits the current transaction.
112
113 =cut
114
115 sub txn_commit { $_[0]->storage->txn_commit }
116
117 =head2 txn_rollback
118
119 Rolls back the current transaction.
120
121 =cut
122
123 sub txn_rollback { $_[0]->storage->txn_rollback }
124
125 {
126   my $warn;
127
128   sub resolve_class {
129     warn "resolve_class deprecated as of 0.04999_02" unless $warn++;
130     return shift->class_resolver->class(@_);
131   }
132 }
133
134 1;
135
136 =head1 AUTHORS
137
138 Matt S. Trout <mst@shadowcatsystems.co.uk>
139
140 =head1 LICENSE
141
142 You may distribute this code under the same terms as Perl itself.
143
144 =cut
145