X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=interfaces%2Fpostgresql%2Fpostgresql-package.cl;h=96f0bfb4a77d9c75ecbfb11cee192557136db203;hb=3926d72ba0021044cc122c9ed9aa60607cf9c42d;hp=48d8d5e73c3bfc92091d02631dd9e2e19d3ce60e;hpb=8213ff48f5362c3d4792444c929f50bd128bd044;p=clsql.git diff --git a/interfaces/postgresql/postgresql-package.cl b/interfaces/postgresql/postgresql-package.cl index 48d8d5e..96f0bfb 100644 --- a/interfaces/postgresql/postgresql-package.cl +++ b/interfaces/postgresql/postgresql-package.cl @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: postgresql-package.cl,v 1.1 2002/03/23 14:04:53 kevin Exp $ +;;;; $Id: postgresql-package.cl,v 1.6 2002/03/29 09:37:24 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -21,7 +21,7 @@ (defpackage :postgresql (:nicknames :pgsql) - (:use :common-lisp) + (:use :common-lisp :clsql-uffi) (:export #:pgsql-oid #:pgsql-conn-status-type @@ -39,6 +39,13 @@ #:pgsql-conn #:pgsql-result + #:pgsql-ftype#bytea + #:pgsql-ftype#int2 + #:pgsql-ftype#int4 + #:pgsql-ftype#int8 + #:pgsql-ftype#float4 + #:pgsql-ftype#float8 + ;; Functions #:PQsetdbLogin #:PQlogin @@ -61,6 +68,7 @@ #:PQgetlength #:PQgetisnull #:PQclear + #:PQisBusy ) (:documentation "This is the low-level interface to PostgreSQL."))