Newer Older
109 lines | 2.577kb
packaging one directory
yuki-kimoto authored on 2009-11-16
1
package DBIx::Custom::MySQL;
2

            
3
use strict;
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
4
use warnings;
update document
yuki-kimoto authored on 2010-01-30
5

            
update document
yuki-kimoto authored on 2010-05-27
6
use base 'DBIx::Custom';
7

            
add Oracle, DB2, Pg,
yuki-kimoto authored on 2009-11-16
8
use Carp 'croak';
packaging one directory
yuki-kimoto authored on 2009-11-16
9

            
update document
yuki-kimoto authored on 2010-05-27
10
__PACKAGE__->attr([qw/database host port/]);
11

            
packaging one directory
yuki-kimoto authored on 2009-11-16
12
sub connect {
update document
yuki-kimoto authored on 2010-05-27
13
    my $proto = shift;
14
    
15
    # Create
16
    my $self = ref $proto ? $proto : $proto->new(@_);
packaging one directory
yuki-kimoto authored on 2009-11-16
17
    
update document
yuki-kimoto authored on 2010-01-30
18
    # Create data source
add port and host method
yuki-kimoto authored on 2009-11-16
19
    if (!$self->data_source) {
20
        my $database = $self->database;
21
        my $host     = $self->host;
22
        my $port     = $self->port;
23
        my $data_source = "dbi:mysql:";
24
        $data_source .= "database=$database;" if $database;
25
        $data_source .= "host=$host;"         if $host;
26
        $data_source .= "port=$port;"         if $port;
27
        $self->data_source($data_source);
packaging one directory
yuki-kimoto authored on 2009-11-16
28
    }
29
    
30
    return $self->SUPER::connect;
31
}
32

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
33
sub last_insert_id { shift->dbh->{mysql_insertid} }
add Oracle, DB2, Pg,
yuki-kimoto authored on 2009-11-16
34

            
removed register_format()
yuki-kimoto authored on 2010-05-26
35
1;
36

            
packaging one directory
yuki-kimoto authored on 2009-11-16
37
=head1 NAME
38

            
cleanup
yuki-kimoto authored on 2010-08-03
39
DBIx::Custom::MySQL - MySQL implementation
packaging one directory
yuki-kimoto authored on 2009-11-16
40

            
update document
yuki-kimoto authored on 2010-01-30
41
=head1 SYNOPSYS
packaging one directory
yuki-kimoto authored on 2009-11-16
42

            
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
43
    # Connect to database
44
    my $dbi = DBIx::Custom::MySQL->connect(user     => 'taro', 
update document
yuki-kimoto authored on 2010-05-27
45
                                           password => 'kliej&@K',
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
46
                                           database => 'your_database');
update document
yuki-kimoto authored on 2010-05-27
47
    
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
48
    # Get last insert id
update document
yuki-kimoto authored on 2010-05-27
49
    my $id = $dbi->last_insert_id;
packaging one directory
yuki-kimoto authored on 2009-11-16
50

            
update document
yuki-kimoto authored on 2010-05-27
51
=head1 ATTRIBUTES
packaging one directory
yuki-kimoto authored on 2009-11-16
52

            
update document
yuki-kimoto authored on 2010-05-27
53
This class is L<DBIx::Custom> subclass.
54
You can use all attributes of L<DBIx::Custom>
packaging one directory
yuki-kimoto authored on 2009-11-16
55

            
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
56
=head2 C<database>
packaging one directory
yuki-kimoto authored on 2009-11-16
57

            
cleanup
yuki-kimoto authored on 2010-08-03
58
    my $database = $dbi->database;
59
    $dbi         = $dbi->database('your_database');
update document
yuki-kimoto authored on 2009-11-19
60

            
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
61
Database name.
62
This is used for connect().
packaging one directory
yuki-kimoto authored on 2009-11-16
63

            
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
64
=head2 C<host>
add Oracle, DB2, Pg,
yuki-kimoto authored on 2009-11-16
65

            
cleanup
yuki-kimoto authored on 2010-08-03
66
    my $host = $dbi->host;
67
    $dbi     = $dbi->host('somehost.com');
update document
yuki-kimoto authored on 2010-05-27
68

            
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
69
Database host name.
70
You can also set IP address, instead of host name.
71
This is used for connect().
update document
yuki-kimoto authored on 2010-05-27
72

            
73
    $dbi->host('127.03.45.12');
74

            
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
75
=head2 C<port>
update document
yuki-kimoto authored on 2010-05-27
76

            
cleanup
yuki-kimoto authored on 2010-08-03
77
    my $port = $dbi->port;
78
    $dbi     = $dbi->port(1198);
update document
yuki-kimoto authored on 2010-05-27
79

            
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
80
Database port. This is used for connect().
81

            
update document
yuki-kimoto authored on 2010-05-27
82
=head1 METHODS
83

            
84
This class is L<DBIx::Custom> subclass.
85
You can use all methods of L<DBIx::Custom>.
86

            
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
87
=head2 C<connect (overridden)>
update document
yuki-kimoto authored on 2010-05-27
88

            
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
89
    $dbi = DBIx::Custom::MySQL->connect(
90
        data_source => "dbi:mysql:database=books;host=somehost;port=2000"
91
    );
92
    
93
    $dbi = DBIx::Custom::MySQL->connect(user     => 'taro', 
94
                                        password => 'kliej&@K',
95
                                        database => 'your_database',
96
                                        host     => 'somehost',
97
                                        port     => 2000);
update document
yuki-kimoto authored on 2010-05-27
98

            
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
99
Connect to database. You can also specify database, host, and port
100
(instead of data soruce).
update document
yuki-kimoto authored on 2010-05-27
101

            
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
102
=head2 C<last_insert_id>
version 0.0901
yuki-kimoto authored on 2009-12-17
103

            
update document
yuki-kimoto authored on 2009-11-19
104
    $last_insert_id = $dbi->last_insert_id;
add Oracle, DB2, Pg,
yuki-kimoto authored on 2009-11-16
105

            
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
106
Get last insert id.
update document
yuki-kimoto authored on 2010-05-27
107
This is equal to MySQL last_insert_id() function.
add Oracle, DB2, Pg,
yuki-kimoto authored on 2009-11-16
108

            
update document
yuki-kimoto authored on 2010-01-30
109
=cut