DBI 1.34 is out.
Apart from bug fixes, the interesting news are a couple of new method and a warning about minimum requirements being increased in future versions.
- can
$is_implemented = $h->can($method_name);Returns true if $method_name is implemented by the driver or a default method is provided by the DBI.
- install_method
DBD::Foo::db->install_method($method_name, \%attr); Installs the driver-private method named by $method_name into the DBI method dispatcher so it can be called directly, avoiding the need to use the func() method.
Future versions of the DBI *will not* support perl 5.6.0 or earlier.If you are using earlier versions of Perl and want to stay updated with the DBI in future, this looks like a good moment to start thinking about upgrades.
: Perl 5.6.1 will be the minimum supported version.
_ _ _ _ (_|| | |(_|>< _|
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: DBI 1.34 - new methods and heads-up on future requirements
by princepawn (Parson) on Mar 15, 2003 at 12:57 UTC |