1 package DBIx::Class::DB;
6 use base qw/DBIx::Class/;
7 use DBIx::Class::Schema;
8 use DBIx::Class::Storage::DBI;
9 use DBIx::Class::ClassResolver::PassThrough;
11 use Scalar::Util 'blessed';
14 unless ($INC{"DBIx/Class/CDBICompat.pm"}) {
15 warn "IMPORTANT: DBIx::Class::DB is DEPRECATED AND *WILL* BE REMOVED. DO NOT USE.\n";
18 __PACKAGE__->load_components(qw/ResultSetProxy/);
20 sub storage { shift->schema_instance(@_)->storage; }
21 sub dbi_commit { shift->txn_commit(@_) }
22 sub dbi_rollback { shift->txn_rollback(@_) }
26 DBIx::Class::DB - (DEPRECATED) classdata schema component
30 This class is designed to support the Class::DBI connection-as-classdata style
31 for DBIx::Class. You are *strongly* recommended to use a DBIx::Class::Schema
32 instead; DBIx::Class::DB will not undergo new development and will be moved
33 to being a CDBICompat-only component before 1.0. In order to discourage further
34 use, documentation has been removed as of 0.08000
44 Sets or gets the storage backend. Defaults to L<DBIx::Class::Storage::DBI>.
56 Sets or gets the class to use for resolving a class. Defaults to
57 L<DBIx::Class::ClassResolver::Passthrough>, which returns whatever you give
58 it. See resolve_class below.
64 __PACKAGE__->mk_classdata('class_resolver' =>
65 'DBIx::Class::ClassResolver::PassThrough');
71 __PACKAGE__->connection($dsn, $user, $pass, $attrs);
73 Specifies the arguments that will be passed to DBI->connect(...) to
74 instantiate the class dbh when required.
81 my ($class, @info) = @_;
82 $class->setup_schema_instance unless $class->can('schema_instance');
83 $class->schema_instance->connection(@info);
88 =head2 setup_schema_instance
90 Creates a class method ->schema_instance which contains a DBIx::Class::Schema;
91 all class-method operations are proxies through to this object. If you don't
92 call ->connection in your DBIx::Class::DB subclass at load time you *must*
93 call ->setup_schema_instance in order for subclasses to find the schema and
94 register themselves with it.
100 sub setup_schema_instance {
103 bless $schema, 'DBIx::Class::Schema';
104 $class->mk_classdata('schema_instance' => $schema);
111 Begins a transaction (does nothing if AutoCommit is off).
117 sub txn_begin { shift->schema_instance->txn_begin(@_); }
123 Commits the current transaction.
129 sub txn_commit { shift->schema_instance->txn_commit(@_); }
135 Rolls back the current transaction.
141 sub txn_rollback { shift->schema_instance->txn_rollback(@_); }
147 Executes a block of code transactionally. If this code reference
148 throws an exception, the transaction is rolled back and the exception
149 is rethrown. See L<DBIx::Class::Schema/"txn_do"> for more details.
155 sub txn_do { shift->schema_instance->txn_do(@_); }
161 warn "resolve_class deprecated as of 0.04999_02" unless $warn++;
162 return shift->class_resolver->class(@_);
168 =head2 resultset_instance
170 Returns an instance of a resultset for this class - effectively
171 mapping the L<Class::DBI> connection-as-classdata paradigm into the
172 native L<DBIx::Class::ResultSet> system.
178 sub resultset_instance {
179 $_[0]->result_source_instance->resultset
184 =head2 result_source_instance
186 Returns an instance of the result source for this class
192 __PACKAGE__->mk_classdata('_result_source_instance' => []);
194 # Yep. this is horrific. Basically what's happening here is that
195 # (with good reason) DBIx::Class::Schema copies the result source for
196 # registration. Because we have a retarded setup order forced on us we need
197 # to actually make our ->result_source_instance -be- the source used, and we
198 # need to get the source name and schema into ourselves. So this makes it
201 sub _maybe_attach_source_to_schema {
202 my ($class, $source) = @_;
203 if (my $meth = $class->can('schema_instance')) {
204 if (my $schema = $class->$meth) {
205 $schema->register_class($class, $class);
206 my $new_source = $schema->source($class);
207 %$source = %$new_source;
208 $schema->source_registrations->{$class} = $source;
213 sub result_source_instance {
215 $class = ref $class || $class;
219 $class->_result_source_instance([$source, $class]);
220 $class->_maybe_attach_source_to_schema($source);
224 my($source, $result_class) = @{$class->_result_source_instance};
225 return unless blessed $source;
227 if ($result_class ne $class) { # new class
228 # Give this new class its own source and register it.
229 $source = $source->new({
231 source_name => $class,
232 result_class => $class
234 $class->_result_source_instance([$source, $class]);
235 $class->_maybe_attach_source_to_schema($source);
246 See L</class_resolver>
256 Alias for L</txn_commit>
266 Alias for L</txn_rollback>
270 =head1 AUTHOR AND CONTRIBUTORS
272 See L<AUTHOR|DBIx::Class/AUTHOR> and L<CONTRIBUTORS|DBIx::Class/CONTRIBUTORS> in DBIx::Class
276 You may distribute this code under the same terms as Perl itself