Implemented idea, feedback needed/welcome

2010-08-04 Thread H.Merijn Brand
http://www.xs4all.nl/~hmbrand/TD.tgz use DBI; use Tie::DBD; my $dbh = DBI-connect (dbi:Pg:, ...); tie my %hash, Tie::DBD, $dbh; tie my %hash, Tie::DBD, $dbh, foo; $hash{key} = $value; # INSERT $hash{key} = 3; # UPDATE delete $hash{key};# DELETE

Re: Implemented idea, feedback needed/welcome

2010-08-04 Thread Jens Rehsack
2010/8/4 H.Merijn Brand h.m.br...@xs4all.nl: http://www.xs4all.nl/~hmbrand/TD.tgz    use DBI;    use Tie::DBD;    my $dbh = DBI-connect (dbi:Pg:, ...);    tie my %hash, Tie::DBD, $dbh;    tie my %hash, Tie::DBD, $dbh, foo;    $hash{key} = $value;  # INSERT    $hash{key} = 3;       #

Re: Implemented idea, feedback needed/welcome

2010-08-04 Thread H.Merijn Brand
On Wed, 4 Aug 2010 19:50:36 +0200, Jens Rehsack rehs...@googlemail.com wrote: 2010/8/4 H.Merijn Brand h.m.br...@xs4all.nl: http://www.xs4all.nl/~hmbrand/TD.tgz    use DBI;    use Tie::DBD;    my $dbh = DBI-connect (dbi:Pg:, ...);    tie my %hash, Tie::DBD, $dbh;    tie my

Re: Tie::DBI issues

2010-08-04 Thread Jens Rehsack
2010/6/20 Todd Rinaldo to...@null.net: On Sat, Jun 19, 2010 at 8:50 AM, Jens Rehsack rehs...@googlemail.com wrote: Hi Todd, hi Lincoln, at first I want to express my acknowledgment and thank for your great work at Tie::DBI. I'm unsure who is the primary maintainer now (does Todd just apply

Re: Implemented idea, feedback needed/welcome

2010-08-04 Thread H.Merijn Brand
On Wed, 4 Aug 2010 19:50:36 +0200, Jens Rehsack rehs...@googlemail.com wrote: 2010/8/4 H.Merijn Brand h.m.br...@xs4all.nl: http://www.xs4all.nl/~hmbrand/TD.tgz New version available as http://www.xs4all.nl/~hmbrand/Tie-DBD-0.01.tgz t/10_hash.t still has to be changed    use DBI;    use