5aa1d63af5
DBIx::Abstract - DBI SQL abstraction. This module provides methods for doing manipulating database tables This module provides methods retrieving and storing data in SQL databases. It provides methods for all of the more important SQL commands (like SELECT, INSERT, REPLACE, UPDATE, DELETE). It endeavors to produce an interface that will be intuitive to those already familiar with SQL. Notable features include: * data_source generation for some DBD drivers. * Can check to make sure the connection is not stale and reconnect if it is. * Controls statement handles for you. * Can delay writes. * Generates complex where clauses from hashes and arrays. * Shortcuts (convenience functions) for some common cases. (Like select_all_to_hashref.) WWW: http://search.cpan.org/dist/DBIx-Abstract/ PR: ports/91372 Submitted by: Jon Nistor <nistor@snickers.org>
24 lines
525 B
Makefile
24 lines
525 B
Makefile
# New ports collection makefile for: p5-DBIx-Abstract
|
|
# Date created: 6 Jan 2006
|
|
# Whom: Jon Nistor <nistor@snickers.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= DBIx-Abstract
|
|
PORTVERSION= 1.006
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= DBIx
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= nistor@snickers.org
|
|
COMMENT= DBIx::Abstract - DBI SQL abstraction
|
|
|
|
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= DBIx::Abstract.3
|
|
|
|
.include <bsd.port.mk>
|