On Fri, 16 Apr 2010 12:41:32 -0700, "David E. Wheeler"
wrote:
> On Apr 16, 2010, at 3:13 AM, Tim Bunce wrote:
>
> >> In connect(), before $connect_meth, just as connected() is called in that
> >> method after $connect_meth.
> >>
> >>$dbh->connected(@orig_args);
> >>unless ($dbh = $drh-
On Apr 16, 2010, at 3:13 AM, Tim Bunce wrote:
>> In connect(), before $connect_meth, just as connected() is called in that
>> method after $connect_meth.
>>
>> $dbh->connected(@orig_args);
>> unless ($dbh = $drh->$connect_meth($dsn, $user, $pass, $attr)) {
>
> $dbh is undef before the
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160
> Which is great but I was talking about DBI/DBD development
> not problems with DBDs.
Apologies for the tone of my previous email, I misunderstood
things and replied to hastily. As penance, I'll check out
the #dbi channel on irc.perl.org an
On Thu, Apr 15, 2010 at 10:07:14AM -0700, David E. Wheeler wrote:
> On Apr 15, 2010, at 5:17 AM, Tim Bunce wrote:
>
> >$drh = DBI->install_driver($driver);
> >$dbh = $drh->connect(...);
> >
> > Assuming we added a $dbh->connecting() method, how would it be called,
> > and how would the ca