X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=sql%2Fpackage.cl;h=989b27731c044ef41c56f47c8ee740ce8cb0caff;hb=159a6c7e79f2fbc65fe93dbc0efd26c018a8fc84;hp=9c539927d92e9e5f0ba78ce9211b209580f6268d;hpb=210a13e0da4ddd46ef23d9bca1bb77da98fa4487;p=clsql.git diff --git a/sql/package.cl b/sql/package.cl index 9c53992..989b277 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.3 2002/03/26 14:11:59 kevin Exp $ +;;;; $Id: package.cl,v 1.5 2002/04/01 05:27:55 kevin 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,16 @@ #: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 ;; Shared exports for re-export by CLSQL . #1=(#:clsql-condition @@ -98,8 +108,19 @@ #: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 + )) (:documentation "This is the INTERNAL SQL-Interface package of CLSQL."))