X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=db-odbc%2Fodbc-package.lisp;h=cc91f6f56796c5ff7d622138528d4d52308c79d1;hp=e70debe2b5c29c1be675967f65b4dc5afff8b45e;hb=d2d49ab13c98bc7a1819a0fd3968268a5567bdc3;hpb=d0f147d0e7d942b379bd7cd472f26b00c33916bc diff --git a/db-odbc/odbc-package.lisp b/db-odbc/odbc-package.lisp index e70debe..cc91f6f 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,13 +18,14 @@ (defpackage #:odbc (:use #:cl #:uffi) - (:export + (:export #:database-library-loaded #:*null* #:+null-ptr+ #:+max-precision+ #:*info-output* + #:*time-conversion-function* #:get-cast-long #:%free-statement #:%disconnect @@ -38,6 +37,7 @@ #:%new-db-connection-handle #:%new-environment-handle #:%sql-connect + #:%sql-driver-connect #:disable-autocommit #:enable-autocommit #:%sql-free-environment @@ -58,11 +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."))