X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-postgresql%2Fpostgresql-package.cl;fp=clsql-postgresql%2Fpostgresql-package.cl;h=0000000000000000000000000000000000000000;hb=7b296f477e74a6db6e319e6cb6dff16be44e6a60;hp=34f6c0035b0d9eaa97255b2737120d8e7f854047;hpb=b0770ce015dd263398ea13f1df810173574a6752;p=clsql.git diff --git a/clsql-postgresql/postgresql-package.cl b/clsql-postgresql/postgresql-package.cl deleted file mode 100644 index 34f6c00..0000000 --- a/clsql-postgresql/postgresql-package.cl +++ /dev/null @@ -1,84 +0,0 @@ -;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ************************************************************************* -;;;; FILE IDENTIFICATION -;;;; -;;;; Name: postgresql-package.cl -;;;; Purpose: Package definition for low-level PostgreSQL interface -;;;; Programmer: Kevin M. Rosenberg -;;;; Date Started: Feb 2002 -;;;; -;;;; $Id: postgresql-package.cl,v 1.1 2002/08/01 03:06:26 kevin Exp $ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg -;;;; -;;;; CLSQL users are granted the rights to distribute and use this software -;;;; as governed by the terms of the Lisp Lesser GNU Public License -;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. -;;;; ************************************************************************* - -(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) -(in-package :cl-user) - -(defpackage :postgresql - (:nicknames :pgsql) - (:use :common-lisp :clsql-uffi) - (:export - #:pgsql-oid - #:pgsql-conn-status-type - #:pgsql-conn-status-type#connection-ok - #:pgsql-conn-status-type#connection-bad - #:pgsql-exec-status-type - #:pgsql-exec-status-type#empty-query - #:pgsql-exec-status-type#command-ok - #:pgsql-exec-status-type#tuples-ok - #:pgsql-exec-status-type#copy-out - #:pgsql-exec-status-type#copy-in - #:pgsql-exec-status-type#bad-response - #:pgsql-exec-status-type#nonfatal-error - #:pgsql-exec-status-type#fatal-error - #: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 - #:PQfinish - #:PQstatus - #:PQerrorMessage - #:PQexec - #:PQresultStatus - #:PQresultErrorMessage - #:PQntuples - #:PQnfields - #:PQfname - #:PQfnumber - #:PQftype - #:PQfsize - #:PQcmdStatus - #:PQoidStatus - #:PQcmdTuples - #:PQgetvalue - #:PQgetlength - #:PQgetisnull - #:PQclear - #:PQisBusy - - ;;Large Objects (Marc B) - #:lo-create - #:lo-open - #:lo-write - #:lo-read - #:lo-lseek - #:lo-close - #:lo-unlink - ) - (:documentation "This is the low-level interface to PostgreSQL.")) - -