X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=sql%2Fpool.lisp;h=f6c6c40a2bf06dac25895552e67bd38ea49d57cf;hp=6791a6e272368ad232d2318856248b743d74cd98;hb=c1950032014682ed3b41a3bdf2934bff91c53740;hpb=be9ed7390bdb1511c44eb036bbf3691eb8f28687 diff --git a/sql/pool.lisp b/sql/pool.lisp index 6791a6e..f6c6c40 100644 --- a/sql/pool.lisp +++ b/sql/pool.lisp @@ -33,8 +33,28 @@ (defun acquire-from-conn-pool (pool) (or (with-process-lock ((conn-pool-lock pool) "Acquire from pool") - (and (plusp (length (free-connections pool))) - (vector-pop (free-connections pool)))) + (when (plusp (length (free-connections pool))) + (let ((pconn (vector-pop (free-connections pool)))) + ;; test if connection still valid. + ;; Currently, on supported on MySQL + (cond + ((eq :mysql (database-type pconn)) + (handler-case + (database-query "SHOW ERRORS LIMIT 1" pconn nil nil) + (error (e) + ;; we could check for error type 2006 for "SERVER GONE AWAY", + ;; but, it's safer just to disconnect the pooled conn for any error + (warn "Database connection ~S had an error when attempted to be acquired from the pool: + ~S +Disconnecting.~%" + pconn e) + (disconnect :database pconn :error nil) + nil) + (:no-error (res) + (declare (ignore res)) + pconn))) + (t + pconn))))) (let ((conn (connect (connection-spec pool) :database-type (pool-database-type pool) :if-exists :new