Commit | Line | Data |
---|---|---|
ea2e61bf | 1 | package DBIx::Class::DB; |
2 | ||
1edd1722 | 3 | use base qw/DBIx::Class/; |
7fb16f1a | 4 | use DBIx::Class::Schema; |
8b445e33 | 5 | use DBIx::Class::Storage::DBI; |
11b78bd6 | 6 | use DBIx::Class::ClassResolver::PassThrough; |
604d9f38 | 7 | use DBI; |
ea2e61bf | 8 | |
80c90f5d | 9 | __PACKAGE__->load_components(qw/ResultSetProxy/); |
2d679367 | 10 | |
8091aa91 | 11 | *dbi_commit = \&txn_commit; |
12 | *dbi_rollback = \&txn_rollback; | |
13 | ||
7fb16f1a | 14 | sub storage { shift->schema_instance(@_)->storage; } |
2d679367 | 15 | |
f6858c33 | 16 | sub resultset_instance { |
1225fc4d | 17 | my $class = ref $_[0] || $_[0]; |
8c49f629 | 18 | my $source = $class->result_source_instance; |
7fb16f1a | 19 | if ($source->result_class ne $class) { |
20 | $source = $source->new($source); | |
21 | $source->result_class($class); | |
22 | } | |
23 | return $source->resultset; | |
88cb6a1d | 24 | } |
25 | ||
34d52be2 | 26 | =head1 NAME |
27 | ||
66d9ef6b | 28 | DBIx::Class::DB - Non-recommended classdata schema component |
34d52be2 | 29 | |
30 | =head1 SYNOPSIS | |
31 | ||
8b445e33 | 32 | package MyDB; |
33 | ||
34 | use base qw/DBIx::Class/; | |
503536d5 | 35 | __PACKAGE__->load_components('DB'); |
8b445e33 | 36 | |
37 | __PACKAGE__->connection('dbi:...', 'user', 'pass', \%attrs); | |
38 | ||
39 | package MyDB::MyTable; | |
40 | ||
41 | use base qw/MyDB/; | |
8091aa91 | 42 | __PACKAGE__->load_components('Core'); # just load this in MyDB if it will always be there |
4a9d7cae | 43 | |
44 | ... | |
8b445e33 | 45 | |
34d52be2 | 46 | =head1 DESCRIPTION |
47 | ||
66d9ef6b | 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. | |
34d52be2 | 52 | |
53 | =head1 METHODS | |
54 | ||
8091aa91 | 55 | =head2 storage |
076652e8 | 56 | |
8091aa91 | 57 | Sets or gets the storage backend. Defaults to L<DBIx::Class::Storage::DBI>. |
076652e8 | 58 | |
7fb16f1a | 59 | =head2 class_resolver ****DEPRECATED**** |
076652e8 | 60 | |
8091aa91 | 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. | |
076652e8 | 64 | |
34d52be2 | 65 | =cut |
66 | ||
11b78bd6 | 67 | __PACKAGE__->mk_classdata('class_resolver' => |
68 | 'DBIx::Class::ClassResolver::PassThrough'); | |
8fe001e1 | 69 | |
8091aa91 | 70 | =head2 connection |
39fe0e65 | 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 | ||
8fe001e1 | 79 | sub connection { |
80 | my ($class, @info) = @_; | |
66d9ef6b | 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'); | |
7fb16f1a | 98 | $class->mk_classdata('schema_instance' => $schema); |
ea2e61bf | 99 | } |
100 | ||
8091aa91 | 101 | =head2 txn_begin |
39fe0e65 | 102 | |
8091aa91 | 103 | Begins a transaction (does nothing if AutoCommit is off). |
39fe0e65 | 104 | |
105 | =cut | |
106 | ||
08b515f1 | 107 | sub txn_begin { $_[0]->schema_instance->txn_begin } |
a29644e1 | 108 | |
8091aa91 | 109 | =head2 txn_commit |
39fe0e65 | 110 | |
8091aa91 | 111 | Commits the current transaction. |
39fe0e65 | 112 | |
8091aa91 | 113 | =cut |
114 | ||
08b515f1 | 115 | sub txn_commit { $_[0]->schema_instance->txn_commit } |
8091aa91 | 116 | |
117 | =head2 txn_rollback | |
118 | ||
119 | Rolls back the current transaction. | |
39fe0e65 | 120 | |
121 | =cut | |
122 | ||
08b515f1 | 123 | sub txn_rollback { $_[0]->schema_instance->txn_rollback } |
8b445e33 | 124 | |
8452e496 | 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 | } | |
7fb16f1a | 132 | } |
11b78bd6 | 133 | |
ea2e61bf | 134 | 1; |
34d52be2 | 135 | |
34d52be2 | 136 | =head1 AUTHORS |
137 | ||
daec44b8 | 138 | Matt S. Trout <mst@shadowcatsystems.co.uk> |
34d52be2 | 139 | |
140 | =head1 LICENSE | |
141 | ||
142 | You may distribute this code under the same terms as Perl itself. | |
143 | ||
144 | =cut | |
145 |