r1802: fix typos with pooled connections
[clsql.git] / sql / package.cl
index f816764927a10b701d60837d37863af53c4d8867..166e42ada05844df5ccff12644c7096db3324530 100644 (file)
@@ -8,7 +8,7 @@
 ;;;;                Original code by Pierre R. Mai 
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: package.cl,v 1.6 2002/04/07 15:23:10 kevin Exp $
+;;;; $Id: package.cl,v 1.10 2002/04/28 00:50:17 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai
      #:database-sequence-next
     
      #:sql-escape
+
+     ;; Support for pooled connections
+     #:database-type
+     
+     ;; Large objects (Marc B)
+     #:database-create-large-object
+     #:database-write-large-object
+     #:database-read-large-object
+     #:database-delete-large-object
+     
      ;; Shared exports for re-export by CLSQL
      .
      #1=(#:clsql-condition
         #:create-sequence 
         #:drop-sequence
         #:sequence-next
+        #:transaction-start
+        #:transaction-commit
+        #:transaction-abort
         
+        ;; Pooled connections
+        #:disconnect-pooled
+
+        ;; Transactions
+        #:with-transaction
+
+        ;; Large objects (Marc B)
+        #:create-large-object
+        #:write-large-object
+        #:read-large-object
+        #:delete-large-object
         ))
     (:documentation "This is the INTERNAL SQL-Interface package of CLSQL."))