X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=db-odbc%2Fodbc-package.lisp;h=40214eb795d4a8a41955825290dc25ad2cc66c33;hb=92cad9a9410b8e481987b90cc4f5edd8cc85e7ce;hp=ce96084beaec1a9227fbc308c07d779978ee41dd;hpb=a7e38685365a6cf067290843c0ed168b6fb545e9;p=clsql.git diff --git a/db-odbc/odbc-package.lisp b/db-odbc/odbc-package.lisp index ce96084..40214eb 100644 --- a/db-odbc/odbc-package.lisp +++ b/db-odbc/odbc-package.lisp @@ -7,8 +7,6 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Created: April 2004 ;;;; -;;;; $Id: odbc-package.lisp 7061 2003-09-07 06:34:45Z kevin $ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2004 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software @@ -20,12 +18,14 @@ (defpackage #:odbc (:use #:cl #:uffi) - (:export + (:export #:database-library-loaded #:*null* - #:*trace-sql* + #:+null-ptr+ #:+max-precision+ + #:*info-output* + #:*time-format* #:get-cast-long #:%free-statement #:%disconnect @@ -37,9 +37,9 @@ #:%new-db-connection-handle #:%new-environment-handle #:%sql-connect + #:%sql-driver-connect #:disable-autocommit #:enable-autocommit - #:%null-ptr #:%sql-free-environment #:%sql-data-sources #:%sql-get-info @@ -58,9 +58,12 @@ #:query-database #:%new-statement-handle #:%sql-exec-direct - #:%put-str #:result-columns-count + #:result-rows-count #:sql-to-c-type + #:%list-tables + #:%table-statistics + #:%list-data-sources ) (:documentation "This is the low-level interface ODBC."))