Re: DBD::mongDB

2010-11-04 Thread Tim Bunce
On Wed, Nov 03, 2010 at 09:13:38PM -0400, Rudy Lippan wrote: > > Hi Tim, &al., > > I am working on writing a DBD for mongoDB, but before I get too far into > the code, I'd like to get an official prefix for it. I am leaning > towards 'hu_'* this way I won't have to worry about any of my names >

Re: $SIG{INT} tampering during DBI->connect on Oracle

2010-11-04 Thread Charles Jardine
On 03/11/10 19:16, Brian Phillips wrote: > On Wed, Nov 3, 2010 at 9:55 AM, Charles Jardine wrote: >> I simply do not see this effect. The following program: >> >> #!/usr/local/bin/perl -w >> use DBI; >> my $dbh = DBI->connect("dbi:Oracle:", oralogin) or die "Failed\n"; >> $| = 1; >> sleep 1,

Re: $SIG{INT} tampering during DBI->connect on Oracle

2010-11-04 Thread Martin J. Evans
On 04/11/10 10:30, Charles Jardine wrote: > On 03/11/10 19:16, Brian Phillips wrote: >> On Wed, Nov 3, 2010 at 9:55 AM, Charles Jardine wrote: >>> I simply do not see this effect. The following program: >>> >>> #!/usr/local/bin/perl -w >>> use DBI; >>> my $dbh = DBI->connect("dbi:Oracle:", oral

Re: DBD::mongDB

2010-11-04 Thread Rudy Lippan
On 11/03/2010 10:08 PM, Darren Duncan wrote: > Darren Duncan wrote: >> Rudy Lippan wrote: >>> Does anyone know if there are any DBD::drivers that do not use some >>> variant of SQL? I ask because I am planing on implementing the driver >>> using mongoDB's native query language initially, but having

Re: DBD::mongDB

2010-11-04 Thread Rudy Lippan
On 11/04/2010 06:00 AM, Tim Bunce wrote: > On Wed, Nov 03, 2010 at 09:13:38PM -0400, Rudy Lippan wrote: >> >> Hi Tim, &al., >> >> I am working on writing a DBD for mongoDB, but before I get too far into >> the code, I'd like to get an official prefix for it. I am leaning >> towards 'hu_'* this way

ANNOUNCE DBD Oracle 1.27 Release Candidate 1

2010-11-04 Thread John Scoles
You can find Release Candidate 1 for DBD::Oracle 1.27 here http://svn.perl.org/modules/dbd-oracle/branches/polute/DBD_ORACLE_1_27_RC_1.tar.zip This release is limited to cleaning up Perl globals within the C and XS code. Short version PERL_POLLUTE is being dropped from perl 5.13.3 so drivers

Re: $SIG{INT} tampering during DBI->connect on Oracle

2010-11-04 Thread Brian Phillips
On Nov 3, 4:29 pm, rehs...@googlemail.com (Jens Rehsack) wrote: > 2010/11/3 Martin J. Evans : > > > Is it really worth changing DBD::Oracle for what effectively is a one liner? > > No, because it's not safe for each Oracle configuration. It must keep up to > the > developer to figure out when it's

Re: DBD::mongDB

2010-11-04 Thread Darren Duncan
Rudy Lippan wrote: On 11/03/2010 10:08 PM, Darren Duncan wrote: Darren Duncan wrote: Rudy Lippan wrote: Does anyone know if there are any DBD::drivers that do not use some variant of SQL? I ask because I am planing on implementing the driver using mongoDB's native query language initially, but