From 3f5f1a3f373c89940d4407f92ed58b2f093d9698 Mon Sep 17 00:00:00 2001 From: Ryan Davis Date: Thu, 30 Aug 2012 16:18:53 -0400 Subject: [PATCH] ensure the sqlite database name is a string (and not a pathname) --- db-sqlite3/sqlite3-sql.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db-sqlite3/sqlite3-sql.lisp b/db-sqlite3/sqlite3-sql.lisp index 927716a..63e48ec 100644 --- a/db-sqlite3/sqlite3-sql.lisp +++ b/db-sqlite3/sqlite3-sql.lisp @@ -31,7 +31,7 @@ (defmethod database-name-from-spec (connection-spec (database-type (eql :sqlite3))) (check-sqlite3-connection-spec connection-spec) - (first connection-spec)) + (princ-to-string (first connection-spec))) (defmethod database-connect (connection-spec (database-type (eql :sqlite3))) (check-sqlite3-connection-spec connection-spec) -- 2.34.1