add dbconnect

Use C++ object API to allow applications to connect to databases
This commit is contained in:
Ying-Chieh Liao 2001-07-23 07:51:29 +00:00
parent 214bb42676
commit 06827c4fb0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=45385
6 changed files with 47 additions and 0 deletions

View file

@ -5,6 +5,7 @@
SUBDIR += cdb
SUBDIR += db
SUBDIR += db3
SUBDIR += dbconnect
SUBDIR += dbf2mysql
SUBDIR += dbmetrix
SUBDIR += dbtool

View file

@ -0,0 +1,28 @@
# ex:ts=8
# New ports collection makefile for: dbconnect
# Date created: Jul 23, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= dbconnect
PORTVERSION= 0.2.0
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
WRKSRC= ${WRKDIR}/${PORTNAME}
GNU_CONFIGURE= yes
.if defined(WITH_MYSQL)
LIB_DEPENDS= mysqlclient:${PORTSDIR}/databases/mysql323-client
CONFIGURE_ARGS+= --with-mysql=yes --with-mysqldir=${LOCALBASE}
PLIST_SUB+= MYSQL=""
.else
PLIST_SUB+= MYSQL="@comment "
.endif
.include <bsd.port.mk>

View file

@ -0,0 +1 @@
MD5 (dbconnect-0.2.0.tar.gz) = c782a100ae10aeb7de16970986db66c8

View file

@ -0,0 +1 @@
Use C++ object API to allow applications to connect to databases

View file

@ -0,0 +1,8 @@
DBConnect (Database Connect) API is an easy to use C++ object API to allow
applications to connect to databases. Your DB applications can now become
cross platform and cross databased.
The API currently implements MySQL, Oracle8 and PostGreSQL drivers in the
Unix environments and MySQL, Oracle8 and ODBC in the Windows environment.
WWW: http://dbconnect.sourceforge.net/

View file

@ -0,0 +1,8 @@
include/dbconn.h
include/dbconnect_basedriver.h
lib/libdbconn.a
lib/libdyndbconn.so
%%MYSQL%%include/dbconnect_MYSQL.h
%%MYSQL%%include/mysql.h
%%MYSQL%%include/mysql_com.h
%%MYSQL%%include/mysql_version.h