r10128: Add SQLite3 backend
[clsql.git] / tests / utils.lisp
index eb10ec33fe989ae5cd7751f0bd4a48af1ea63972..948d75a53b034d517a6ed28b0ba734360bbb775e 100644 (file)
@@ -24,7 +24,7 @@
                 :type "config"))
 
 (defvar +all-db-types+
-  '(:postgresql :postgresql-socket :mysql :sqlite :odbc :oracle
+  '(:postgresql :postgresql-socket :mysql :sqlite :sqlite3 :odbc :oracle
     #+allegro :aodbc))
 
 (defclass conn-specs ()
@@ -33,6 +33,7 @@
    (postgresql :accessor postgresql-spec :initform nil)
    (postgresql-socket :accessor postgresql-socket-spec :initform nil)
    (sqlite :accessor sqlite-spec :initform nil)
+   (sqlite3 :accessor sqlite3-spec :initform nil)
    (odbc :accessor odbc-spec :initform nil)
    (oracle :accessor oracle-spec :initform nil))
   (:documentation "Connection specs for CLSQL testing"))