r1802: fix typos with pooled connections
[clsql.git] / sql / package.cl
index 9c539927d92e9e5f0ba78ce9211b209580f6268d..166e42ada05844df5ccff12644c7096db3324530 100644 (file)
@@ -8,7 +8,7 @@
 ;;;;                Original code by Pierre R. Mai 
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: package.cl,v 1.3 2002/03/26 14:11:59 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-query-result-set
      #:database-dump-result-set
      #:database-store-next-row
+     
+     ;; For UncommonSQL support
+     #:database-list-tables
+     #:database-list-attributes
+     #:database-attribute-type
+     #:database-create-sequence 
+     #:database-drop-sequence
+     #: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
         #:execute-command
         #:map-query
         #:do-query
+
+        ;; functional.cl
+
         #:insert-records
         #:delete-records
         #:update-records
-        #:select
         #:with-database
         
         ;; utils.cl
+        #:number-to-sql-string
         #:float-to-sql-string
         #:sql-escape-quotes
+        
+        ;; For UncommonSQL support
+        #:sql-ident
+        #:list-tables
+        #:list-attributes
+        #:attribute-type
+        #: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."))