X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=db-postgresql-socket%2Fpostgresql-socket-package.lisp;h=aa15fa796485d51a2d2162f0d63d3bd13671cc5e;hp=23b7747335abf8f2ebc92e956d68a95f0b0484bb;hb=e567409d9fff3f7231c2a0bb69b345e19de2b246;hpb=fa071351835a2c754895cb917db9c63303e7b5c1 diff --git a/db-postgresql-socket/postgresql-socket-package.lisp b/db-postgresql-socket/postgresql-socket-package.lisp index 23b7747..aa15fa7 100644 --- a/db-postgresql-socket/postgresql-socket-package.lisp +++ b/db-postgresql-socket/postgresql-socket-package.lisp @@ -7,7 +7,7 @@ ;;;; Programmers: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: postgresql-socket-package.lisp,v 1.3 2002/10/21 07:45:50 kevin Exp $ +;;;; $Id$ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,47 +16,46 @@ ;;;; (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) +(in-package #:cl-user) #+lispworks (require "comm") -(defpackage :postgresql-socket - (:use #:common-lisp) +(defpackage #:postgresql-socket + (: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 + ))