File: Database.pm

package info (click to toggle)
libmongodbx-class-perl 1.030002-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 396 kB
  • ctags: 95
  • sloc: perl: 876; makefile: 2
file content (110 lines) | stat: -rw-r--r-- 2,426 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package MongoDBx::Class::Database;

# ABSTRACT: A MongoDBx::Class database object

our $VERSION = "1.030002";
$VERSION = eval $VERSION;

use Moose;
use namespace::autoclean;
use version;

extends 'MongoDB::Database';

=head1 NAME

MongoDBx::Class::Database - A MongoDBx::Class database object

=head1 VERSION

version 1.030002

=head1 EXTENDS

L<MongoDB::Database>

=head1 SYNOPSIS

	# get a database object from your connection object
	my $db = $conn->get_database($db_name); # or simply $conn->$db_name

=head1 DESCRIPTION

MongoDBx::Class::Database extends L<MongoDB::Database>. All it actually
does is override the C<get_collection> method such that it returns a
L<MongoDBx::Class::Collection> object instead of a L<MongoDB::Collection>
object.

=head1 ATTRIBUTES

No special attributes are added.

=head1 OBJECT METHODS

Only the C<get_collection> method is modified as described above.

=cut

override 'get_collection' => sub {
	MongoDBx::Class::Collection->new(_database => shift, name => shift);
};

sub _connection {
	version->parse($MongoDB::VERSION) < v0.502.0 ? $_[0]->SUPER::_connection : $_[0]->_client;
}

=head1 AUTHOR

Ido Perlmuter, C<< <ido at ido50.net> >>

=head1 BUGS

Please report any bugs or feature requests to C<bug-mongodbx-class at rt.cpan.org>, or through
the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=MongoDBx-Class>. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.

=head1 SUPPORT

You can find documentation for this module with the perldoc command.

	perldoc MongoDBx::Class::Database

You can also look for information at:

=over 4

=item * RT: CPAN's request tracker

L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=MongoDBx::Class>

=item * AnnoCPAN: Annotated CPAN documentation

L<http://annocpan.org/dist/MongoDBx::Class>

=item * CPAN Ratings

L<http://cpanratings.perl.org/d/MongoDBx::Class>

=item * Search CPAN

L<http://search.cpan.org/dist/MongoDBx::Class/>

=back

=head1 SEE ALSO

L<MongoDBx::Class::Connection>, L<MongoDB::Database>.

=head1 LICENSE AND COPYRIGHT

Copyright 2010-2014 Ido Perlmuter.

This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.

=cut

__PACKAGE__->meta->make_immutable;