diff options
author | mm <mm@FreeBSD.org> | 2009-05-26 15:39:48 +0800 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2009-05-26 15:39:48 +0800 |
commit | 31711962a24ba6b9be86323d078f3f03048e6fba (patch) | |
tree | 496483d29bbb990b715cc16d59c901d0769bc82d /databases | |
parent | c795e6a2949f659edb88835000765564abf5b941 (diff) | |
download | freebsd-ports-gnome-31711962a24ba6b9be86323d078f3f03048e6fba.tar.gz freebsd-ports-gnome-31711962a24ba6b9be86323d078f3f03048e6fba.tar.zst freebsd-ports-gnome-31711962a24ba6b9be86323d078f3f03048e6fba.zip |
LuaSQL is a simple interface from Lua to a DBMS. It enables a Lua
program to:
* Connect to ODBC, ADO, Oracle, MySQL, SQLite and PostgreSQL databases;
* Execute arbitrary SQL statements;
* Retrieve results in a row-by-row cursor fashion.
WWW: http://www.keplerproject.org/luasql/
----------------------------------------------------------------------
Diffstat (limited to 'databases')
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/luasql-postgres/Makefile | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index 3c561b19fa07..29b8134638fd 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -156,6 +156,7 @@ SUBDIR += linux-oracle-instantclient-sqlplus SUBDIR += lsdb SUBDIR += luasql-mysql + SUBDIR += luasql-postgres SUBDIR += ludia SUBDIR += maatkit SUBDIR += mantis diff --git a/databases/luasql-postgres/Makefile b/databases/luasql-postgres/Makefile new file mode 100644 index 000000000000..cbce12cf1323 --- /dev/null +++ b/databases/luasql-postgres/Makefile @@ -0,0 +1,15 @@ +# New ports collection makefile for: luasql-postgres +# Date created: 25 May 2009 +# Whom: Martin Matuska <martin@matuska.org> +# +# $FreeBSD$ +# + +PORTNAME= luasql + +MAINTAINER= mm@FreeBSD.org + +LUASQL_DRIVER= postgres +MASTERDIR= ${.CURDIR}/../luasql-mysql + +.include "${MASTERDIR}/Makefile" |