X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=db-postgresql-socket%2Fpostgresql-socket-package.cl;fp=db-postgresql-socket%2Fpostgresql-socket-package.cl;h=0000000000000000000000000000000000000000;hb=7d50938ba2db52a713498e49aa1679deae6f0b6b;hp=9b46110000d7fee068526a42a161cf307ac130f5;hpb=998937376fa6f9ce29bd3c7954fb0ebca91c37d7;p=clsql.git diff --git a/db-postgresql-socket/postgresql-socket-package.cl b/db-postgresql-socket/postgresql-socket-package.cl deleted file mode 100644 index 9b46110..0000000 --- a/db-postgresql-socket/postgresql-socket-package.cl +++ /dev/null @@ -1,62 +0,0 @@ -;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ************************************************************************* -;;;; FILE IDENTIFICATION -;;;; -;;;; Name: postgresql-socket-package.cl -;;;; Purpose: Package definition for PostgreSQL interface using sockets -;;;; Programmers: Kevin M. Rosenberg -;;;; Date Started: Feb 2002 -;;;; -;;;; $Id: postgresql-socket-package.cl,v 1.1 2002/09/18 07:43:41 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) - -#+lispworks (require "comm") - -(defpackage :postgresql-socket - (:use :common-lisp) - (:export #:pgsql-ftype - #:pgsql-ftype#bytea - #:pgsql-ftype#int2 - #:pgsql-ftype#int4 - #:pgsql-ftype#int8 - #:pgsql-ftype#float4 - #:pgsql-ftype#float8 - - #:+crypt-library+ - #:postgresql-condition - #:postgresql-condition-connection - #:postgresql-condition-message - #:postgresql-error - #:postgresql-fatal-error - #:postgresql-login-error - #:postgresql-warning - #:postgresql-notification - #:postgresql-connection - #:postgresql-connection-p - #:postgresql-cursor - #:postgresql-cursor-p - #:postgresql-cursor-connection - #:postgresql-cursor-name - #:postgresql-cursor-fields - #:+postgresql-server-default-port+ - #:open-postgresql-connection - #:reopen-postgresql-connection - #:close-postgresql-connection - #:postgresql-connection-open-p - #:ensure-open-postgresql-connection - #:start-query-execution - #:wait-for-query-results - #:read-cursor-row - #:copy-cursor-row - #:skip-cursor-row - )) -