1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 #:postgresql-notification)
(: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))
|