Re: Request consideration of DBD::Neo4p registration

2014-02-10 Thread Tim Bunce
On Mon, Feb 10, 2014 at 12:19:05AM -0500, Mark Jensen wrote: Greetings DBI, I would like to register DBD::Neo4p in DBI with prefix neo_. It provides a DBI wrapper for a REST interface to the Neo4j db. Done. https://metacpan.org/pod/REST::Neo4p I'd suggest abstracting out the

Re: Request consideration of DBD::Neo4p registration

2014-02-10 Thread Martin J. Evans
On 10/02/14 08:36, Tim Bunce wrote: On Mon, Feb 10, 2014 at 12:19:05AM -0500, Mark Jensen wrote: Greetings DBI, I would like to register DBD::Neo4p in DBI with prefix neo_. It provides a DBI wrapper for a REST interface to the Neo4j db. Done.

[perl5-dbi/dbi] a32d0b: Register neo_ prexfix for DBD::Neo4p.

2014-02-10 Thread Tim Bunce
Branch: refs/heads/master Home: https://github.com/perl5-dbi/dbi Commit: a32d0b0a6307e427b7c667ec3ee0600fcb93be68 https://github.com/perl5-dbi/dbi/commit/a32d0b0a6307e427b7c667ec3ee0600fcb93be68 Author: Tim Bunce tim.bu...@pobox.com Date: 2014-02-10 (Mon, 10 Feb 2014)

Re: DBD::mysql 4.026 released

2014-02-10 Thread H.Merijn Brand
On Fri, 17 Jan 2014 16:16:49 -0500, Patrick Galbraith p...@patg.net wrote: Dear Perl and MySQL community, I’m pleased to announce the release of DBD::mysql 4.026 In this release: 2014-01-15 Patrick Galbraith, Michiel Beijen, DBI/DBD community (4.026) * t/29warnings.t fails on MySQL

Re: DBIT prototype - feedback wanted

2014-02-10 Thread H.Merijn Brand
On Sun, 9 Feb 2014 23:18:24 +, Tim Bunce tim.bu...@pobox.com wrote: As you probably know, I've been hacking on a rough DBI::Test prototype for a while. My primary goal has been to discover and explore the issues. Trying to write only the minimum amount of code to do so. It's now at the

Re: DBIT prototype - feedback wanted

2014-02-10 Thread Tim Bunce
On Mon, Feb 10, 2014 at 03:21:02PM +0100, H.Merijn Brand wrote: DBI-Test-git/sandbox/tim 517 perl tumbler.pl String found where operator expected at tumbler.pl line 269, near croak Test variant setting key '$dst_key' already exists Fixed. (I was using an older perl that didn't trip up on

Re: DBIT prototype - feedback wanted

2014-02-10 Thread H.Merijn Brand
On Mon, 10 Feb 2014 21:26:26 +, Tim Bunce tim.bu...@pobox.com wrote: On Mon, Feb 10, 2014 at 03:21:02PM +0100, H.Merijn Brand wrote: DBI-Test-git/sandbox/tim 517 perl tumbler.pl String found where operator expected at tumbler.pl line 269, near croak Test variant setting key

Re: DBIT prototype - feedback wanted

2014-02-10 Thread Tim Bunce
On Mon, Feb 10, 2014 at 10:53:41PM +0100, H.Merijn Brand wrote: On Mon, 10 Feb 2014 21:26:26 +, Tim Bunce tim.bu...@pobox.com wrote: Please try running perl tumbler.pl prove -r out with the latest version, then work from the results (the out/ dir) backwards. When time permits, will

Making DBI (results) more strict

2014-02-10 Thread Max Maischein
Hi all, I recently discovered the greatness that is Hash::Util::lock_ref_keys , when used together with -fetchall_arrayref() like this: ... my $rows= $sth-fetchall_arrayref( {} }; for( @$rows ) { lock_ref_leys( $_ ); }; ... This prevents me from accessing hash

[perl5-dbi/DBI-Test] 46a32c: Automate detection of pure-perl drivers.

2014-02-10 Thread Tim Bunce
Branch: refs/heads/master Home: https://github.com/perl5-dbi/DBI-Test Commit: 46a32cd3de4d3abdb5f1e88b8d2c72149994338f https://github.com/perl5-dbi/DBI-Test/commit/46a32cd3de4d3abdb5f1e88b8d2c72149994338f Author: Tim Bunce tim.bu...@pobox.com Date: 2014-02-10 (Mon, 10 Feb

[perl5-dbi/DBI-Test] 049404: Add cd .../DBI-Test/sandbox/tim; to README

2014-02-10 Thread Tim Bunce
Branch: refs/heads/master Home: https://github.com/perl5-dbi/DBI-Test Commit: 0494042ef519ccb80beeb60f9c78fe7d66928f5f https://github.com/perl5-dbi/DBI-Test/commit/0494042ef519ccb80beeb60f9c78fe7d66928f5f Author: Tim Bunce tim.bu...@pobox.com Date: 2014-02-10 (Mon, 10 Feb

[perl5-dbi/DBI-Test] 6eebc8: Use Carp qw(croak). Die if no tests written (eg ba...

2014-02-10 Thread Tim Bunce
Branch: refs/heads/master Home: https://github.com/perl5-dbi/DBI-Test Commit: 6eebc8abfd10116007c173e32062e000317ff9b6 https://github.com/perl5-dbi/DBI-Test/commit/6eebc8abfd10116007c173e32062e000317ff9b6 Author: Tim Bunce tim.bu...@pobox.com Date: 2014-02-10 (Mon, 10 Feb

[perl5-dbi/DBI-Test] 9f033d: add missing use of Carp

2014-02-10 Thread Jens Rehsack
Branch: refs/heads/master Home: https://github.com/perl5-dbi/DBI-Test Commit: 9f033d519a92b24450e00a5946ecd3ff4984c872 https://github.com/perl5-dbi/DBI-Test/commit/9f033d519a92b24450e00a5946ecd3ff4984c872 Author: Jens Rehsack s...@netbsd.org Date: 2014-02-10 (Mon, 10 Feb 2014)

[perl5-dbi/DBI-Test] d94cdf: Add note about creating a Test::Database config fi...

2014-02-10 Thread Tim Bunce
Branch: refs/heads/master Home: https://github.com/perl5-dbi/DBI-Test Commit: d94cdf66b7d4abf7066963a68e403aef9fd8c41c https://github.com/perl5-dbi/DBI-Test/commit/d94cdf66b7d4abf7066963a68e403aef9fd8c41c Author: Tim Bunce tim.bu...@pobox.com Date: 2014-02-10 (Mon, 10 Feb

Re: Making DBI (results) more strict

2014-02-10 Thread H.Merijn Brand
On Mon, 10 Feb 2014 19:57:41 +0100, Max Maischein cor...@corion.net wrote: Hi all, I recently discovered the greatness that is Hash::Util::lock_ref_keys , when used together with -fetchall_arrayref() like this: ... my $rows= $sth-fetchall_arrayref( {} }; for( @$rows ) {