Update domain name to kpe.io
[clsql.git] / db-postgresql-socket / postgresql-socket-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 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
11 ;;;;
12 ;;;; CLSQL users are granted the rights to distribute and use this software
13 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
14 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
15 ;;;; *************************************************************************
16
17 (in-package #:cl-user)
18
19 #+lispworks (require "comm")
20
21 (defpackage #:postgresql-socket
22   (:use #:cl #:md5)
23   (:export #:pgsql-ftype
24            #:pgsql-ftype#bytea
25            #:pgsql-ftype#int2
26            #:pgsql-ftype#int4
27            #:pgsql-ftype#int8
28            #:pgsql-ftype#float4
29            #:pgsql-ftype#float8
30
31            #:+crypt-library+
32            #:postgresql-condition
33            #:postgresql-condition-connection
34            #:postgresql-condition-message
35            #:postgresql-error
36            #:postgresql-fatal-error
37            #:postgresql-login-error
38            #:postgresql-warning
39            #:postgresql-notification
40            #:postgresql-connection
41            #:postgresql-connection-p
42            #:postgresql-cursor
43            #:postgresql-cursor-p
44            #:postgresql-cursor-connection
45            #:postgresql-cursor-name
46            #:postgresql-cursor-fields
47            #:+postgresql-server-default-port+
48            #:open-postgresql-connection
49            #:reopen-postgresql-connection
50            #:close-postgresql-connection
51            #:postgresql-connection-open-p
52            #:ensure-open-postgresql-connection
53            #:start-query-execution
54            #:wait-for-query-results
55            #:read-cursor-row
56            #:copy-cursor-row
57            #:skip-cursor-row
58            ))