File: postgresql-socket-package.lisp

package info (click to toggle)
cl-sql 6.7.2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 3,552 kB
  • sloc: lisp: 24,508; xml: 17,898; makefile: 487; ansic: 201; sh: 39; cpp: 9
file content (58 lines) | stat: -rw-r--r-- 2,070 bytes parent folder | download | duplicates (3)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
;;;; -*- 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
;;;;
;;;; 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-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

           #:+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
           ))