pkgsrc/databases/p5-DBI/Makefile

19 lines
467 B
Makefile
Raw Normal View History

2003-07-17 23:21:03 +02:00
# $NetBSD: Makefile,v 1.22 2003/07/17 21:28:37 grant Exp $
#
Update p5-DBI to 1.37 Fixed "Can't get dbh->{Statement}: unrecognised attribute" error Fixed DBI->connect to carp instead of croak on 'old-style' usage. Fixed connect(,,, { RootClass => $foo }) to not croak if module not found. Fixed code generated by DBI::DBD::Metadata Fixed DBI::PurePerl to not reset $@ during method dispatch. Fixed Proxy disconnect Fixed error in DBI::DBD docs Changed t/40profile.t to not require Time::HiRes. Changed execute_array() return value from row count to executed tuple count, and now the ArrayTupleStatus attribute is mandatory. NOTE: That is an API definition change that may affect your code. Changed CompatMode attribute to also disable attribute 'quick FETCH'. Changed attribute FETCH to be slightly faster Added workaround for perl bug #17575 tied hash nested FETCH Added Username and Password attributes to connect(..., \%attr) and so also embedded in DSN like "dbi:Driver(Username=user,Password=pass):..." Username and Password can't contain ")", ",", or "=" characters. The predence is DSN first, then \%attr, then $user & $pass parameters, and finally the DBI_USER & DBI_PASS environment variables. The Username attribute is stored in the $dbh but the Password is not. Added ProxyServer HOWTO configure restrictions docs Added MaxRows attribute to selectcol_arrayref Added dump_handle as a method not just a DBI:: utility function. Added on-demand by-row data feed into execute_array() using code ref, or statement handle. For example, to insert from a select: $insert_sth->execute_array( { ArrayTupleFetch => $select_sth, ... } ) Added warning to trace log when $h->{foo}=... is ignored due to invalid prefix (e.g., not 'private_').
2003-05-30 11:34:30 +02:00
DISTNAME= DBI-1.37
PKGNAME= p5-${DISTNAME}
SVR4_PKGNAME= p5dbi
CATEGORIES= databases perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBD/}
2003-07-17 23:21:03 +02:00
MAINTAINER= tech-pkg@NetBSD.org
HOMEPAGE= http://dbi.perl.org/
COMMENT= the database-independent Perl database access API
2002-09-20 02:30:22 +02:00
USE_BUILDLINK2= YES
PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/DBI/.packlist
2002-10-14 00:02:55 +02:00
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"