Re: Unusual behavior with $sth-{NAME} and friends

2008-08-31 Thread Tim Bunce
On Mon, Aug 18, 2008 at 09:40:52PM -, Greg Sabino Mullane wrote: The finish() docs say: Calling Cfinish resets the L/Active attribute for the statement. It may also make some statement handle attributes (such as CNAME and CTYPE) unavailable if they have not already been

Re: Unusual behavior with $sth-{NAME} and friends

2008-08-18 Thread Greg Sabino Mullane
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 The finish() docs say: Calling Cfinish resets the L/Active attribute for the statement. It may also make some statement handle attributes (such as CNAME and CTYPE) unavailable if they have not already been accessed (and thus cached).

Unusual behavior with $sth-{NAME} and friends

2008-08-07 Thread Greg Sabino Mullane
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 I noticed something odd with NAME and NAME_lc / NAME_uc: if they are called, and then called *again* after $sth-finish() is called, both NAME_lc and NAME_uc return the previous values instead of an undef. I'm not sure if this is a DBI or

Re: Unusual behavior with $sth-{NAME} and friends

2008-08-07 Thread David E. Wheeler
On Aug 7, 2008, at 09:29, Greg Sabino Mullane wrote: For DBD::Pg, it prints: $VAR1 = [ 'Goldfish' ]; $VAR1 = [ 'goldfish' ]; $VAR1 = undef; $VAR1 = [ 'goldfish' ]; $VAR1 = undef; DBD::SQLite: $VAR1 = [ 'Goldfish' ]; $VAR1 = [

Re: Unusual behavior with $sth-{NAME} and friends

2008-08-07 Thread Tim Bunce
The finish() docs say: Calling Cfinish resets the L/Active attribute for the statement. It may also make some statement handle attributes (such as CNAME and CTYPE) unavailable if they have not already been accessed (and thus cached). Tim. On Thu, Aug 07, 2008 at 04:29:25PM -, Greg