Hidden.
-=begin hidden head2 storage
+=begin hidden
+
+=head2 storage
Sets or gets the storage backend. Defaults to L<DBIx::Class::Storage::DBI>.
=cut
-=begin hidden head2 class_resolver
+=begin hidden
+
+=head2 class_resolver
****DEPRECATED****
__PACKAGE__->mk_classdata('class_resolver' =>
'DBIx::Class::ClassResolver::PassThrough');
-=begin hidden head2 connection
+=begin hidden
+
+=head2 connection
__PACKAGE__->connection($dsn, $user, $pass, $attrs);
$class->schema_instance->connection(@info);
}
-=begin hidden head2 setup_schema_instance
+=begin hidden
+
+=head2 setup_schema_instance
Creates a class method ->schema_instance which contains a DBIx::Class::Schema;
all class-method operations are proxies through to this object. If you don't
$class->mk_classdata('schema_instance' => $schema);
}
-=begin hidden head2 txn_begin
+=begin hidden
+
+=head2 txn_begin
Begins a transaction (does nothing if AutoCommit is off).
sub txn_begin { shift->schema_instance->txn_begin(@_); }
-=begin hidden head2 txn_commit
+=begin hidden
+
+=head2 txn_commit
Commits the current transaction.
sub txn_commit { shift->schema_instance->txn_commit(@_); }
-=begin hidden head2 txn_rollback
+=begin hidden
+
+=head2 txn_rollback
Rolls back the current transaction.
sub txn_rollback { shift->schema_instance->txn_rollback(@_); }
-=begin hidden head2 txn_do
+=begin hidden
+
+=head2 txn_do
Executes a block of code transactionally. If this code reference
throws an exception, the transaction is rolled back and the exception
}
}
-=begin hidden head2 resultset_instance
+=begin hidden
+
+=head2 resultset_instance
Returns an instance of a resultset for this class - effectively
mapping the L<Class::DBI> connection-as-classdata paradigm into the
$_[0]->result_source_instance->resultset
}
-=begin hidden head2 result_source_instance
+=begin hidden
+
+=head2 result_source_instance
Returns an instance of the result source for this class
return $source;
}
-=begin hidden head2 resolve_class
+=begin hidden
+
+=head2 resolve_class
****DEPRECATED****
=end hidden
-=begin hidden head2 dbi_commit
+=begin hidden
+
+=head2 dbi_commit
****DEPRECATED****
=end hidden
-=begin hidden head2 dbi_rollback
+=begin hidden
+
+=head2 dbi_rollback
****DEPRECATED****
=head1 LICENSE
-You may distribute this code under the same terms as Perl itself.
+You may distribute this code under the same terms as Perl itself
=cut