X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=sql%2Fpackage.cl;h=2db3c446215c5c078e11d67ee03666b056ea0195;hb=a8074fe2035d97f5178c41104dd44c839987c380;hp=b20450bf2ca7f462f75a4f18b8bd32654a9b9ae2;hpb=0d152ae08a457ade1411a0094bad6db3c09dd13b;p=clsql.git diff --git a/sql/package.cl b/sql/package.cl index b20450b..2db3c44 100644 --- a/sql/package.cl +++ b/sql/package.cl @@ -8,7 +8,7 @@ ;;;; Original code by Pierre R. Mai ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: package.cl,v 1.4 2002/03/27 05:04:19 kevin Exp $ +;;;; $Id: package.cl,v 1.7 2002/04/19 20:25:20 marc.battyani Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai @@ -41,6 +41,23 @@ #: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 + + ;; 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 @@ -91,16 +108,33 @@ #: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 + + ;; 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."))