summaryrefslogtreecommitdiff
path: root/databases/pear-DB_QueryTool
diff options
context:
space:
mode:
authorThierry Thomas <thierry@FreeBSD.org>2005-03-04 21:09:54 +0000
committerThierry Thomas <thierry@FreeBSD.org>2005-03-04 21:09:54 +0000
commit306d362e4f31d30e656ff30b328937cc98ac60c5 (patch)
treea8a1e69312388117106e65dcd57f1acea7a72526 /databases/pear-DB_QueryTool
parent- Update POE::Component::Server::HTTP from version 0.05 to 0.06 (diff)
Add pear-DB_QueryTool 1.0.0, PEAR OO-interface for easily
retrieving and modifying data in a DB. PR: 78367 Submitted by: Antônio Carlos Venâncio Júnior
Notes
Notes: svn path=/head/; revision=130380
Diffstat (limited to 'databases/pear-DB_QueryTool')
-rw-r--r--databases/pear-DB_QueryTool/Makefile43
-rw-r--r--databases/pear-DB_QueryTool/distinfo2
-rw-r--r--databases/pear-DB_QueryTool/pkg-descr10
3 files changed, 55 insertions, 0 deletions
diff --git a/databases/pear-DB_QueryTool/Makefile b/databases/pear-DB_QueryTool/Makefile
new file mode 100644
index 000000000000..f352e5912fe5
--- /dev/null
+++ b/databases/pear-DB_QueryTool/Makefile
@@ -0,0 +1,43 @@
+# Ports collection makefile for: pear-DB_QueryTool
+# Date created: 03 March 2005
+# Whom: Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>)
+#
+# $FreeBSD$
+#
+
+PORTNAME= DB_QueryTool
+PORTVERSION= 1.0.0
+CATEGORIES= databases www pear
+
+MAINTAINER= antonio@php.net
+COMMENT= PEAR OO-interface for easily retrieving and modifying data in a DB
+
+BUILD_DEPENDS= ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB \
+ ${PEARDIR}/Log.php:${PORTSDIR}/sysutils/pear-Log
+RUN_DEPENDS= ${BUILD_DEPENDS}
+
+CATEGORY= DB
+FILES= QueryTool.php QueryTool/Query.php QueryTool/EasyJoin.php \
+ QueryTool/Result.php QueryTool/Result/Object.php
+EXAMPLES= example.php mysql.sql pgsql.sql
+TESTS= Common.php Get.php GetAll.php GetCount.php GetQueryString.php index.php \
+ Having.php Limit.php sql.php UnitTest.php Where.php SetDbInstance.php \
+ simpletest_tests/all_tests.php simpletest_tests/db_querytool_include.php \
+ simpletest_tests/db_querytool_test_base.php \
+ simpletest_tests/db_querytool_testDbInstance.php \
+ simpletest_tests/db_querytool_testGet.php \
+ simpletest_tests/db_querytool_testGetAll.php \
+ simpletest_tests/db_querytool_testGetCount.php \
+ simpletest_tests/db_querytool_testGetQueryString.php \
+ simpletest_tests/db_querytool_testHaving.php \
+ simpletest_tests/db_querytool_testLimit.php \
+ simpletest_tests/db_querytool_tests_get.php \
+ simpletest_tests/db_querytool_tests_usage.php \
+ simpletest_tests/db_querytool_testWhere.php \
+ simpletest_tests/db_settings.php simpletest_tests/index.php \
+ simpletest_tests/readme.txt simpletest_tests/simple_include.php
+_EXAMPLESDIR= docs/examples
+
+.include <bsd.port.pre.mk>
+.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common"
+.include <bsd.port.post.mk>
diff --git a/databases/pear-DB_QueryTool/distinfo b/databases/pear-DB_QueryTool/distinfo
new file mode 100644
index 000000000000..340c4320c672
--- /dev/null
+++ b/databases/pear-DB_QueryTool/distinfo
@@ -0,0 +1,2 @@
+MD5 (PEAR/DB_QueryTool-1.0.0.tgz) = 9cb78be2a3f7bba2671a4a7e42e7be37
+SIZE (PEAR/DB_QueryTool-1.0.0.tgz) = 38880
diff --git a/databases/pear-DB_QueryTool/pkg-descr b/databases/pear-DB_QueryTool/pkg-descr
new file mode 100644
index 000000000000..6388e8c1510c
--- /dev/null
+++ b/databases/pear-DB_QueryTool/pkg-descr
@@ -0,0 +1,10 @@
+PEAR::DB_QueryTool is an OO-abstraction to the SQL-Query language, it provides
+methods such as setWhere, setOrder, setGroup, setJoin, etc. to easily build
+queries.
+
+It also provides an easy to learn interface that interacts nicely with
+HTML-forms using arrays that contain the column data, that shall be
+updated/added in a DB. This package bases on an SQL-Builder which lets you
+easily build SQL-Statements and execute them.
+
+WWW: http://pear.php.net/package/DB_QueryTool/