X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=db-postgresql-socket3%2Fpackage.lisp;fp=db-postgresql-socket3%2Fpackage.lisp;h=430b2eb0948a04b3dbd885e25cfae77c1fc4b6be;hp=0000000000000000000000000000000000000000;hb=6e49d313475d42d2ef7b4eea626f2d7da902d09e;hpb=fdc28505b82da26cc8142964cb8ae40cdc8bfdfc diff --git a/db-postgresql-socket3/package.lisp b/db-postgresql-socket3/package.lisp new file mode 100644 index 0000000..430b2eb --- /dev/null +++ b/db-postgresql-socket3/package.lisp @@ -0,0 +1,35 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: postgresql-socket-package.lisp +;;;; Purpose: Package definition for PostgreSQL interface using sockets +;;;; 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 +;;;; as governed by the terms of the Lisp Lesser GNU Public License +;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. +;;;; ************************************************************************* + +(in-package #:cl-user) + +#+lispworks (require "comm") + +(defpackage #:postgresql-socket3 + (:use #:cl md5 #:cl-postgres) + (:shadow #:postgresql-warning) + (:export #:+postgresql-server-default-port+ + #:postgresql-condition + #:postgresql-error + #:postgresql-fatal-error + #:postgresql-login-error + #:postgresql-warning + #:postgresql-notification + #:postgresql-condition-message + #:postgresql-condition-connection)) +