blob: 520718aba2c6b1f3edcd4f9655ec2daf42148da6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
module Syntax = ImportConf.Syntax
val create_table : Dependency.t -> string
type query = {
q : string; (** The query to execute *)
parameters : ImportCSV.DataType.t Seq.t;
}
(** This type represent a query to execute. [q] is the template to run, and
shall be run with all the binded parameters. *)
val select :
Syntax.t -> query * ImportDataTypes.Path.t ImportExpression.T.t array
val check_external : Syntax.t -> Syntax.Extern.t -> query
(** Create a query which select all the missing key in an external *)
val build_key_insert : Buffer.t -> Dependency.key -> unit
(* Build the fragment insert query.
This use prepare statement and apply the function at the insert time, in
order to have the key already in the expected format in the database.
The column are name :col_XX where XX is the index of the column in the
datasheet (starting from 1)
*)
|