diff options
Diffstat (limited to 'lib/sql/db.ml')
-rw-r--r-- | lib/sql/db.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sql/db.ml b/lib/sql/db.ml index 89431b1..0f06f15 100644 --- a/lib/sql/db.ml +++ b/lib/sql/db.ml @@ -231,7 +231,7 @@ let insert : Error e (** This simple function convert a query generated by the application into a - statement executed with sqlite. + statement executed with sqlite. The function expect a perfect match between the query and the parameters. *) let execute_query : @@ -303,7 +303,7 @@ let check_foreign : f:((string * CSV.DataType.t) array -> unit) -> Sqlite3.db -> Syntax.t -> - Syntax.extern -> + Syntax.Extern.t -> unit T.result = fun ~f db conf external_ -> let query = ImportAnalyser.Query.check_external conf external_ in |