Automated commit for debian release 6.7.2-1
[clsql.git] / db-postgresql-socket3 / package.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          postgresql-socket-package.lisp
6 ;;;; Purpose:       Package definition for PostgreSQL interface using sockets
7 ;;;; Programmers:   Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; CLSQL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (in-package #:cl-user)
20
21 #+lispworks (require "comm")
22
23 (defpackage #:postgresql-socket3
24   (:use #:cl md5 #:cl-postgres)
25   (:shadow #:postgresql-warning #:postgresql-notification)
26   (:export #:+postgresql-server-default-port+
27            #:postgresql-condition
28            #:postgresql-error
29            #:postgresql-fatal-error
30            #:postgresql-login-error
31            #:postgresql-warning
32            #:postgresql-notification
33            #:postgresql-condition-message
34            #:postgresql-condition-connection))
35