On Thu, Jan 02, 2003 at 06:03:25PM -0600, Moritz von Schweinitz wrote: > hi there, > > somehow i can't get $sth->{ParamValues} working using DBD::mysql (i > guess it should support that feature, or?). > > anyhow, the docs say: > --------------------- > ParamValues (hash ref, read-only) > Returns a reference to a hash containing the values currently bound > to placeholders. Returns undef if not supported by the driver. If the > driver does support ParamValues but no values have been bound yet then > either undef or an empty hash may be returned.
In the next release that part will say: : Returns a reference to a hash containing the values currently bound : to placeholders. The keys of the hash are the 'names' of the : placeholders, typically integers starting at 1. Returns undef if : not supported by the driver. If the driver does support C<ParamValues> : but no values have been bound yet then either undef or an empty : hash may be returned. Thanks. Tim.