[![Build Status](https://travis-ci.org/yuuki/Coteng.svg?branch=master)](https://travis-ci.org/yuuki/Coteng) [![Coverage Status](https://img.shields.io/coveralls/yuuki/Coteng/master.svg?style=flat)](https://coveralls.io/r/yuuki/Coteng?branch=master) # NAME Coteng - Lightweight Teng # SYNOPSIS use Coteng; my $coteng = Coteng->new({ connect_info => { db_master => { dsn => 'dbi:mysql:dbname=server;host=dbmasterhost', user => 'nobody', passwd => 'nobody', }, db_slave => { dsn => 'dbi:mysql:dbname=server;host=dbslavehost', user => 'nobody', passwd => 'nobody', }, }, }); # or my $coteng = Coteng->new({ connect_info => { db_master => [ 'dbi:mysql:dbname=server;host=dbmasterhost', 'nobody', 'nobody', { PrintError => 0, } ], db_slave => [ 'dbi:mysql:dbname=server;host=dbslavehost', 'nobody', 'nobody', ], }, }); # or use Coteng::DBI; my $dbh1 = Coteng::DBI->connect('dbi:mysql:dbname=server;host=dbmasterhost', 'nobody', 'npbody'); my $dbh2 = Coteng::DBI->connect('dbi:mysql:dbname=server;host=dbslavehost', 'nobody', 'npbody'); my $coteng = Coteng->new({ dbh => { db_master => $dbh1, db_slave => $dbh2, }, }); my $inserted_host = $coteng->db('db_master')->insert(host => { name => 'host001', ipv4 => '10.0.0.1', status => 'standby', }, "Your::Model::Host"); my $last_insert_id = $coteng->db('db_master')->fast_insert(host => { name => 'host001', ipv4 => '10.0.0.1', status => 'standby', }); my $host = $coteng->db('db_slave')->single(host => { name => 'host001', }, "Your::Model::Host"); my $hosts = $coteng->db('db_slave')->search(host => { name => 'host001', }, "Your::Model::Host"); my $updated_row_count = $coteng->db('db_master')->update(host => { status => "working", }, { id => 10, }); my $deleted_row_count = $coteng->db('db_master')->delete(host => { id => 10, }); ## no blessed return value my $hosts = $coteng->db('db_slave')->single(host => { name => 'host001', }); # Raw SQL interface my $host = $coteng->db('db_slave')->single_named(q[ SELECT * FROM host where name = :name LIMIT 1 ], { name => "host001" }, "Your::Model::Host"); my $host = $coteng->db('db_slave')->single_by_sql(q[ SELECT * FROM host where name = ? LIMIT 1 ], [ "host001" ], "Your::Model::Host"); my $hosts = $coteng->db('db_slave')->search_named(q[ SELECT * FROM host where status = :status ], { status => "working" }, "Your::Model::Host"); my $hosts = $coteng->db('db_slave')->search_named(q[ SELECT * FROM host where status = ? ], [ "working" ], "Your::Model::Host"); package Your::Model::Host; use Class::Accessor::Lite( rw => [qw( id name ipv4 status )], new => 1, ); # DESCRIPTION Coteng is a lightweight [Teng](https://metacpan.org/pod/Teng), just as very simple DBI wrapper. Teng is a simple and good designed ORMapper, but it has a little complicated functions such as the row class, iterator class, the schema definition class ([Teng::Row](https://metacpan.org/pod/Teng::Row), [Teng::Iterator](https://metacpan.org/pod/Teng::Iterator) and [Teng::Schema](https://metacpan.org/pod/Teng::Schema)). Coteng doesn't have such functions and only has very similar Teng SQL interface. Coteng itself has no transaction and last\_insert\_id implementation, but has thir interface thanks to [DBIx::Sunny](https://metacpan.org/pod/DBIx::Sunny). (Coteng uses DBIx::Sunny as a base DB handler.) # METHODS Coteng provides a number of methods to all your classes, - $coteng = Coteng->new(\\%args) Creates a new Coteng instance. # connect new database connection. my $coteng = Coteng->new({ connect_info => { dbname => { dsn => $dsn, user => $user, passwd => $passwd, attr => \%attr, }, }, }); Arguments can be: - `connect_info` Specifies the information required to connect to the database. The argument should be a reference to a nested hash in the form: { dbname => { dsn => $dsn, user => $user, passwd => $passwd, attr => \%attr, }, }, or a array referece in the form { dbname => [ $dsn, $user, $passwd, \%attr ], }, 'dbname' is something you like to identify a database type such as 'db\_master', 'db\_slave', 'db\_batch'. - `$row = $coteng->db($dbname)` Set internal current db by $dbname registered in 'new' method. Returns Coteng object ($self) to enable you to use method chain like below. my $row = $coteng->db('db_master')->insert(); - `$row = $coteng->insert($table, \%row_data, [\%opt], [$class])` Inserts a new record. Returns the inserted row object blessed $class. If it's not specified $class, returns the hash reference. my $row = $coteng->db('db_master')->insert(host => { id => 1, ipv4 => '192.168.0.0', }, { primary_key => 'host_id', prefix => 'SELECT DISTINCT' } ); 'primary\_key' default value is 'id'. 'prefix' default value is 'SELECT'. If a primary key is available, it will be fetched after the insert -- so an INSERT followed by SELECT is performed. If you do not want this, use `fast_insert`. - `$last_insert_id = $teng->fast_insert($table_name, \%row_data, [$prefix]);` insert new record and get last\_insert\_id. no creation row object. - `$teng->bulk_insert($table_name, \@rows_data)` Accepts either an arrayref of hashrefs. Each hashref should be a structure suitable for your table schema. The second argument is an arrayref of hashrefs. All of the keys in these hashrefs must be exactly the same. insert many record by bulk. example: $coteng->db('db_master')->bulk_insert(host => [ { id => 1, name => 'host001', }, { id => 2, name => 'host002', }, { id => 3, name => 'host003', }, ]); - `$update_row_count = $coteng->update($table_name, \%update_row_data, [\%update_condition])` Calls UPDATE on `$table_name`, with values specified in `%update_ro_data`, and returns the number of rows updated. You may optionally specify `%update_condition` to create a conditional update query. my $update_row_count = $coteng->db('db_master')->update(host => { name => 'host001', }, { id => 1 } ); # Executes UPDATE user SET name = 'host001' WHERE id = 1 - `$delete_row_count = $coteng->delete($table, \%delete_condition)` Deletes the specified record(s) from `$table` and returns the number of rows deleted. You may optionally specify `%delete_condition` to create a conditional delete query. my $rows_deleted = $coteng->db('db_master')->delete(host => { id => 1 }); # Executes DELETE FROM host WHERE id = 1 - `$row = $teng->single($table_name, \%search_condition, \%search_attr, [$class])` Returns (hash references or $class objects) or empty string ('') if sql result is empty my $row = $coteng->db('db_slave')->single(host => { id => 1 }, 'Your::Model::Host'); my $row = $coteng->db('db_slave')->single(host => { id => 1 }, { columns => [qw(id name)] }); - `$rows = $coteng->search($table_name, [\%search_condition, [\%search_attr]], [$class])` Returns array reference of (hash references or $class objects) or empty array reference (\[\]) if sql result is empty. my $rows = $coteng->db('db_slave')->search(host => {id => 1}, {order_by => 'id'}, 'Your::Model::Host'); - `$row = $teng->single_named($sql, [\%bind_values], [$class])` Gets one record from execute named query Returns empty string ( '' ) if sql result is empty. my $row = $coteng->db('db_slave')->single_named(q{SELECT id,name FROM host WHERE id = :id LIMIT 1}, {id => 1}, 'Your::Model::Host'); - `$row = $coteng->single_by_sql($sql, [\@bind_values], $class)` Gets one record from your SQL. Returns empty string ('') if sql result is empty. my $row = $coteng->db('db_slave')->single_by_sql(q{SELECT id,name FROM user WHERE id = ? LIMIT 1}, [1], 'user'); - `$rows = $coteng->search_named($sql, [\%bind_values], [$class])` Execute named query Returns empty array reference (\[\]) if sql result is empty. my $itr = $coteng->db('db_slave')->search_named(q[SELECT * FROM user WHERE id = :id], {id => 1}, 'Your::Model::Host'); If you give array reference to value, that is expanded to "(?,?,?,?)" in SQL. It's useful in case use IN statement. # SELECT * FROM user WHERE id IN (?,?,?); # bind [1,2,3] my $rows = $coteng->db('db_slave')->search_named(q[SELECT * FROM user WHERE id IN :ids], {ids => [1, 2, 3]}, 'Your::Model::Host'); - `$rows = $coteng->search_by_sql($sql, [\@bind_values], [$class])` Execute your SQL. Returns empty array reference (\[\]) if sql result is empty. my $rows = $coteng->db('db_slave')->search_by_sql(q{ SELECT id, name FROM host WHERE id = ? }, [ 1 ]); - `$count = $coteng->count($table, [$table[, $column[, $where[, $opt]]])` Execute count SQL. Returns record counts. my $count = $coteng->count(host, '*', { status => 'working', }); - `$sth = $coteng->execute($sql, [\@bind_values|@bind_values])` execute query and get statement handler. - `$id = $coteng->last_insert_id()` Returns last\_insert\_id. - `$txn = $coteng->txn_scope()` Returns DBIx::TransactionManager::ScopeGuard object { my $txn = $coteng->db('db_master')->txn_scope(); ... $txn->commit; } # NOTE - USING DBI CLASSES default DBI CLASS is 'Coteng::DBI' (Coteng::DBI's parent is DBIx::Sunny). You can change DBI CLASS via $Coteng::DBI\_CLASS. 'Your::DBI' class should be followed by DBIx::Sunny interface. local $Coteng::DBI_CLASS = 'Your::DBI'; my $coteng = Coteng->new({ connect_info => ... }); $coteng->dbh('db_master')->insert(...); # SEE ALSO - [Teng](https://metacpan.org/pod/Teng) - [DBIx::Sunny](https://metacpan.org/pod/DBIx::Sunny) - [SQL::Maker](https://metacpan.org/pod/SQL::Maker) # LICENSE Copyright (C) y\_uuki. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. # AUTHOR y\_uuki # POD ERRORS Hey! **The above document had some coding errors, which are explained below:** - Around line 492: Expected '=item \*' - Around line 499: Expected '=item \*' - Around line 516: Expected '=item \*' - Around line 522: Expected '=item \*' - Around line 547: Expected '=item \*' - Around line 561: Expected '=item \*' - Around line 570: Expected '=item \*' - Around line 578: Expected '=item \*' - Around line 584: Expected '=item \*' - Around line 591: Expected '=item \*' - Around line 598: Expected '=item \*' - Around line 612: Expected '=item \*' - Around line 626: Expected '=item \*' - Around line 635: Expected '=item \*' - Around line 639: Expected '=item \*' - Around line 643: Expected '=item \*' - Around line 655: You forgot a '=back' before '=head1'