diff options
author | clsung <clsung@FreeBSD.org> | 2008-01-16 20:42:56 +0800 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2008-01-16 20:42:56 +0800 |
commit | 0f3b6437f8cb196a9b6eb84556e6472010a4fb2f (patch) | |
tree | 96931fff38ddd7d4356b35d810c32ee98a1499fe /databases | |
parent | 8119128b5223e8b0a2b88a8ae1c39c81a3e5179b (diff) | |
download | freebsd-ports-gnome-0f3b6437f8cb196a9b6eb84556e6472010a4fb2f.tar.gz freebsd-ports-gnome-0f3b6437f8cb196a9b6eb84556e6472010a4fb2f.tar.zst freebsd-ports-gnome-0f3b6437f8cb196a9b6eb84556e6472010a4fb2f.zip |
SQL::Interp converts a list of intermixed SQL fragments and
variable references into a conventional SQL string and list
of bind values suitable for passing onto DBI. This simple
technique creates database calls that are simpler to create
and easier to read, while still giving you full access to
custom SQL.
SQL::Interp properly binds or escapes variables. This recommended
practice safeguards against "SQL injection" attacks. The DBI
documentation has several links on the topic.
Besides the simple techniques shown above, The SQL-Interpolate
distribution includes the optional DBIx::Interp module.
WWW: http://search.cpan.org/dist/SQL-Interp/
Diffstat (limited to 'databases')
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/p5-SQL-Interp/Makefile | 23 | ||||
-rw-r--r-- | databases/p5-SQL-Interp/distinfo | 3 | ||||
-rw-r--r-- | databases/p5-SQL-Interp/pkg-descr | 15 | ||||
-rw-r--r-- | databases/p5-SQL-Interp/pkg-plist | 7 |
5 files changed, 49 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index 39f506f059ae..4635f06438ad 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -302,6 +302,7 @@ SUBDIR += p5-Rose-DB-Object SUBDIR += p5-SQL-Abstract SUBDIR += p5-SQL-Abstract-Limit + SUBDIR += p5-SQL-Interp SUBDIR += p5-SQL-ReservedWords SUBDIR += p5-SQL-Statement SUBDIR += p5-SQL-Translator diff --git a/databases/p5-SQL-Interp/Makefile b/databases/p5-SQL-Interp/Makefile new file mode 100644 index 000000000000..6c61a5695c80 --- /dev/null +++ b/databases/p5-SQL-Interp/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: SQL-Interp +# Date created: 16 Jan 2008 +# Whom: Cheng-Lung Sung <clsung@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= SQL-Interp +PORTVERSION= 1.06 +CATEGORIES= databases perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= clsung@FreeBSD.org +COMMENT= Interpolate Perl variables into SQL with DBI + +RUN_DEPENDS= p5-DBI>=0:${PORTSDIR}/databases/p5-DBI + +PERL_CONFIGURE= yes + +MAN3= DBIx::Interp.3 SQL::Interp.3 + +.include <bsd.port.mk> diff --git a/databases/p5-SQL-Interp/distinfo b/databases/p5-SQL-Interp/distinfo new file mode 100644 index 000000000000..fa29be6fa267 --- /dev/null +++ b/databases/p5-SQL-Interp/distinfo @@ -0,0 +1,3 @@ +MD5 (SQL-Interp-1.06.tar.gz) = 3f6921977e49a7e0942c09fa8dda00fe +SHA256 (SQL-Interp-1.06.tar.gz) = 130ef97e309f00d75a057ecb0c4c3ca56ab996b1d763e79921ee7c401bb44cf1 +SIZE (SQL-Interp-1.06.tar.gz) = 36211 diff --git a/databases/p5-SQL-Interp/pkg-descr b/databases/p5-SQL-Interp/pkg-descr new file mode 100644 index 000000000000..a25cffb1e6c8 --- /dev/null +++ b/databases/p5-SQL-Interp/pkg-descr @@ -0,0 +1,15 @@ +SQL::Interp converts a list of intermixed SQL fragments and +variable references into a conventional SQL string and list +of bind values suitable for passing onto DBI. This simple +technique creates database calls that are simpler to create +and easier to read, while still giving you full access to +custom SQL. + +SQL::Interp properly binds or escapes variables. This recommended +practice safeguards against "SQL injection" attacks. The DBI +documentation has several links on the topic. + +Besides the simple techniques shown above, The SQL-Interpolate +distribution includes the optional DBIx::Interp module. + +WWW: http://search.cpan.org/dist/SQL-Interp/ diff --git a/databases/p5-SQL-Interp/pkg-plist b/databases/p5-SQL-Interp/pkg-plist new file mode 100644 index 000000000000..310509b729fa --- /dev/null +++ b/databases/p5-SQL-Interp/pkg-plist @@ -0,0 +1,7 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/SQL/Interp/.packlist +%%SITE_PERL%%/DBIx/Interp.pm +%%SITE_PERL%%/SQL/Interp.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/SQL/Interp +@dirrmtry %%SITE_PERL%%/SQL +@dirrmtry %%SITE_PERL%%/DBIx +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/SQL |