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

            
3
use warnings;
4
use strict;
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

            
update document
yuki-kimoto authored on 2010-05-27
39
DBIx::Custom::MySQL - a MySQL implementation of DBIx::Custom
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

            
update document
yuki-kimoto authored on 2010-05-27
43
    # Connect
44
    my $dbi = DBIx::Custom::MySQL->connect(user      => 'taro', 
45
                                           password => 'kliej&@K',
46
                                           database  => 'your_database');
47
    
48
    # Last insert id
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

            
update document
yuki-kimoto authored on 2010-05-27
56
=head2 database
packaging one directory
yuki-kimoto authored on 2009-11-16
57

            
update document
yuki-kimoto authored on 2010-05-27
58
Database name
update document
yuki-kimoto authored on 2009-11-19
59

            
update document
yuki-kimoto authored on 2010-05-27
60
    $dbi      = $dbi->database('your_database');
61
    $database = $dbi->database;
update document
yuki-kimoto authored on 2009-11-19
62

            
update document
yuki-kimoto authored on 2010-05-27
63
=head2 host
packaging one directory
yuki-kimoto authored on 2009-11-16
64

            
update document
yuki-kimoto authored on 2010-05-27
65
Database host name.
add Oracle, DB2, Pg,
yuki-kimoto authored on 2009-11-16
66

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

            
70
IP address can be set to host attribute.
71

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

            
74
=head2 port
75

            
76
Database port.
77

            
78
    $dbi  = $dbi->port(1198);
79
    $port = $dbi->port;
80

            
81
=head1 METHODS
82

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

            
86
=head2 connect - overridden
87

            
88
Connect to database.
89

            
90
    # Connect
91
    my $dbi = DBIx::Custom::MySQL->connect(user      => 'taro', 
92
                                           password => 'kliej&@K',
93
                                           database  => 'your_database');
94

            
95
=head2 last_insert_id
version 0.0901
yuki-kimoto authored on 2009-12-17
96

            
update document
yuki-kimoto authored on 2010-05-27
97
Last insert ID.
version 0.0901
yuki-kimoto authored on 2009-12-17
98

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

            
update document
yuki-kimoto authored on 2010-05-27
101
This is equal to MySQL last_insert_id() function.
add Oracle, DB2, Pg,
yuki-kimoto authored on 2009-11-16
102

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