X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fhmysql%2FhSqlite3.ml;h=707b482bc4d3cb5f76469324a8233d2495a272e9;hb=ec07ff398325533d848da92e9dc69852d24b78a5;hp=b8687c5e9e20e85ce89a3f8a96c06e0508007519;hpb=6ac18bcd7ace15182db46a40191e6a9dc4b8851e;p=helm.git diff --git a/helm/software/components/hmysql/hSqlite3.ml b/helm/software/components/hmysql/hSqlite3.ml index b8687c5e9..707b482bc 100644 --- a/helm/software/components/hmysql/hSqlite3.ml +++ b/helm/software/components/hmysql/hSqlite3.ml @@ -103,6 +103,7 @@ let quick_connect else db_name in + 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" @@ -117,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 ;;