X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=db-postgresql-socket%2Fpostgresql-socket-package.lisp;h=718667be5984cf62da410d111c460416254e92c9;hp=f038a94f91cde26c2ad817104dfd57a9d679da78;hb=d2d49ab13c98bc7a1819a0fd3968268a5567bdc3;hpb=39095e2eef81a3457756334cea4580026828eaf8 diff --git a/db-postgresql-socket/postgresql-socket-package.lisp b/db-postgresql-socket/postgresql-socket-package.lisp index f038a94..718667b 100644 --- a/db-postgresql-socket/postgresql-socket-package.lisp +++ b/db-postgresql-socket/postgresql-socket-package.lisp @@ -7,8 +7,6 @@ ;;;; Programmers: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id$ -;;;; ;;;; 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 @@ -21,41 +19,41 @@ #+lispworks (require "comm") (defpackage #:postgresql-socket - (:use #:cl #-sbcl md5 #+sbcl sb-md5) + (:use #:cl md5) (:export #:pgsql-ftype - #:pgsql-ftype#bytea - #:pgsql-ftype#int2 - #:pgsql-ftype#int4 - #:pgsql-ftype#int8 - #:pgsql-ftype#float4 - #:pgsql-ftype#float8 + #: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 - )) + #:+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 + ))