r9959: more odbc v3 conversions
[clsql.git] / db-odbc / odbc-sql.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          odbc-sql.cl
6 ;;;; Purpose:       Low-level interface for CLSQL ODBC backend
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; CLSQL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (defpackage #:clsql-odbc
20     (:use #:common-lisp #:clsql-sys)
21     (:export #:odbc-database)
22     (:documentation "This is the CLSQL interface to ODBC."))
23
24 (in-package #:clsql-odbc)
25
26 ;; ODBC interface
27
28 (defclass odbc-database (generic-odbc-database)
29   ((odbc-db-type :accessor database-odbc-db-type)))
30
31 (defmethod database-name-from-spec (connection-spec
32                                     (database-type (eql :odbc)))
33   (check-connection-spec connection-spec database-type (dsn user password))
34   (destructuring-bind (dsn user password) connection-spec
35     (declare (ignore password))
36     (concatenate 'string dsn "/" user)))
37
38 (defmethod database-connect (connection-spec (database-type (eql :odbc)))
39   (check-connection-spec connection-spec database-type (dsn user password))
40   (destructuring-bind (dsn user password) connection-spec
41     (handler-case
42         (let ((db (make-instance 'odbc-database
43                                  :name (database-name-from-spec connection-spec :odbc)
44                                  :database-type :odbc
45                                  :dbi-package (find-package '#:odbc-dbi)
46                                  :odbc-conn
47                                  (odbc-dbi:connect :user user
48                                                    :password password
49                                                    :data-source-name dsn))))
50           (store-type-of-connected-database db)
51           ;; Ensure this database type is initialized so can check capabilities of
52           ;; underlying database
53           (initialize-database-type :database-type database-type)
54           db)
55       #+ignore
56       (error ()         ;; Init or Connect failed
57         (error 'sql-connection-error
58                :database-type database-type
59                :connection-spec connection-spec
60                :message "Connection failed")))))
61
62 (defmethod database-underlying-type ((database odbc-database))
63   (database-odbc-db-type database))
64
65 (defun store-type-of-connected-database (db)
66   (let* ((odbc-conn (clsql-sys::odbc-conn db))
67          (server-name (odbc-dbi::get-odbc-info odbc-conn odbc::$SQL_SERVER_NAME))
68          (dbms-name (odbc-dbi::get-odbc-info odbc-conn odbc::$SQL_DBMS_NAME))
69          (type
70           ;; need SERVER-NAME and DBMS-NAME because many drivers mix this up
71           (cond 
72            ((or (search "postgresql" server-name :test #'char-equal)
73                 (search "postgresql" dbms-name :test #'char-equal))
74             :postgresql)
75            ((or (search "mysql" server-name :test #'char-equal)
76                 (search "mysql" dbms-name :test #'char-equal))
77             :mysql)
78            ((or (search "oracle" server-name :test #'char-equal)
79                 (search "oracle" dbms-name :test #'char-equal))
80             :oracle))))
81     (setf (database-odbc-db-type db) type)))
82   
83
84
85 (defmethod database-create (connection-spec (type (eql :odbc)))
86   (declare (ignore connection-spec))
87   (warn "Not implemented."))
88
89 (defmethod database-destroy (connection-spec (type (eql :odbc)))
90   (declare (ignore connection-spec))
91   (warn "Not implemented."))
92
93 (defmethod database-probe (connection-spec (type (eql :odbc)))
94   (when (find (car connection-spec) (database-list connection-spec type)
95               :test #'string-equal)
96     t))
97
98 (defmethod database-list (connection-spec (type (eql :odbc)))
99   (declare (ignore connection-spec))
100   (odbc-dbi:list-all-data-sources))
101
102 (defmethod database-list-indexes ((database odbc-database)
103                                   &key (owner nil))
104   (let ((result '()))
105     (dolist (table (database-list-tables database :owner owner) result)
106       (setq result
107         (append (database-list-table-indexes table database :owner owner)
108                 result)))))
109
110 (defmethod database-list-table-indexes (table (database odbc-database)
111                                         &key (owner nil))
112   (declare (ignore owner))
113   (multiple-value-bind (rows col-names)
114       (odbc-dbi:list-table-indexes 
115        table
116        :db (clsql-sys::odbc-conn database))
117     (declare (ignore col-names))
118     ;; INDEX_NAME is hard-coded in sixth position by ODBC driver
119     ;; FIXME: ??? is hard-coded in the fourth position
120     (do ((results nil)
121          (loop-rows rows (cdr loop-rows)))
122         ((null loop-rows) (nreverse results))
123       (let* ((row (car loop-rows))
124              (col (nth 5 row)))
125         (unless (find col results :test #'string-equal)
126           (push col results))))))
127
128 ;;; Database capabilities
129
130 (defmethod db-backend-has-create/destroy-db? ((db-type (eql :odbc)))
131   nil)
132
133
134 (defmethod database-initialize-database-type ((database-type (eql :odbc)))
135   ;; nothing to do
136   t)
137
138 (when (clsql-sys:database-type-library-loaded :odbc)
139   (clsql-sys:initialize-database-type :database-type :odbc))