]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/hmysql/hSqlite3.ml
In the case type_of constructor with expected type T, T is now put in whd to
[helm.git] / helm / software / components / hmysql / hSqlite3.ml
index c6ba66c2e3f52f217f53daf90c343edd7a93d781..707b482bc4d3cb5f76469324a8233d2495a272e9 100644 (file)
@@ -103,7 +103,7 @@ let quick_connect
     else
       db_name
   in
-  HExtlib.mkdir (Filename.dirname db_open);
+  HExtlib.mkdir (Filename.dirname db_to_open);
   let db = Sqlite3.db_open db_to_open in
   (* attach the REGEX function *)
   Sqlite3.create_fun2 db "REGEXP"
@@ -118,7 +118,8 @@ let quick_connect
              else 
                Sqlite3.Data.INT 0L
          | _ -> raise (Error "wrong types to 'REGEXP'")
-        with exn -> HLog.error (Printexc.to_string exn); raise exn);
+        with Sys.Break -> Sqlite3.Data.INT 0L
+          | exn -> HLog.error (Printexc.to_string exn); raise exn);
   Some db
 ;;