X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=sql%2Fpackage.cl;h=e5097aec19a71e0b209adb104858bd2ba2e30ffe;hb=d302d2db4f7ff7a31bce893e31aecbc2a84a162f;hp=48c5da9875e362a43ca326acb993b923b2ad6d1c;hpb=8213ff48f5362c3d4792444c929f50bd128bd044;p=clsql.git diff --git a/sql/package.cl b/sql/package.cl index 48c5da9..e5097ae 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.1 2002/03/23 14:04:54 kevin Exp $ +;;;; $Id: package.cl,v 1.9 2002/04/27 21:48:08 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai @@ -32,6 +32,7 @@ ;; "Private" exports for use by interface packages #:check-connection-spec #:database-type-load-foreign + #:database-type-library-loaded ;; KMR - Tests if foreign library okay #:database-initialize-database-type #:database-connect #:database-disconnect @@ -40,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 @@ -90,11 +108,43 @@ #:execute-command #:map-query #:do-query + + ;; functional.cl + #:insert-records #:delete-records #:update-records - #:select - #:with-database)) + #: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.")) (defpackage #:clsql