package sqlite3
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Source file sqlite3.ml
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330(**************************************************************************) (* Copyright (c) 2003 Christian Szegedy <csdontspam871@metamatix.org> *) (* *) (* Copyright (c) 2007 Jane Street Holding, LLC *) (* Author: Markus Mottl <markus.mottl@gmail.com> *) (* *) (* Permission is hereby granted, free of charge, to any person *) (* obtaining a copy of this software and associated documentation files *) (* (the "Software"), to deal in the Software without restriction, *) (* including without limitation the rights to use, copy, modify, merge, *) (* publish, distribute, sublicense, and/or sell copies of the Software, *) (* and to permit persons to whom the Software is furnished to do so, *) (* subject to the following conditions: *) (* *) (* The above copyright notice and this permission notice shall be *) (* included in all copies or substantial portions of the Software. *) (* *) (* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, *) (* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES *) (* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND *) (* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS *) (* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN *) (* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN *) (* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE *) (* SOFTWARE. *) (**************************************************************************) open Printf exception InternalError of string exception Error of string exception RangeError of int * int type db type stmt module Rc = struct type unknown external int_of_unknown : unknown -> int = "%identity" type t = | OK | ERROR | INTERNAL | PERM | ABORT | BUSY | LOCKED | NOMEM | READONLY | INTERRUPT | IOERR | CORRUPT | NOTFOUND | FULL | CANTOPEN | PROTOCOL | EMPTY | SCHEMA | TOOBIG | CONSTRAINT | MISMATCH | MISUSE | NOFLS | AUTH | FORMAT | RANGE | NOTADB | ROW | DONE | UNKNOWN of unknown let to_string = function | OK -> "OK" | ERROR -> "ERROR" | INTERNAL -> "INTERNAL" | PERM -> "PERM" | ABORT -> "ABORT" | BUSY -> "BUSY" | LOCKED -> "LOCKED" | NOMEM -> "NOMEM" | READONLY -> "READONLY" | INTERRUPT -> "INTERRUPT" | IOERR -> "IOERR" | CORRUPT -> "CORRUPT" | NOTFOUND -> "NOTFOUND" | FULL -> "FULL" | CANTOPEN -> "CANTOPEN" | PROTOCOL -> "PROTOCOL" | EMPTY -> "EMPTY" | SCHEMA -> "SCHEMA" | TOOBIG -> "TOOBIG" | CONSTRAINT -> "CONSTRAINT" | MISMATCH -> "MISMATCH" | MISUSE -> "MISUSE" | NOFLS -> "NOLFS" | AUTH -> "AUTH" | FORMAT -> "FORMAT" | RANGE -> "RANGE" | NOTADB -> "NOTADB" | ROW -> "ROW" | DONE -> "DONE" | UNKNOWN n -> sprintf "UNKNOWN %d" (int_of_unknown n) end module Data = struct type t = | NONE | NULL | INT of int64 | FLOAT of float | TEXT of string | BLOB of string let to_string = function | NONE | NULL -> "" | INT i -> Int64.to_string i | FLOAT f -> string_of_float f | TEXT t | BLOB t -> t let to_string_debug = function | NONE -> "NONE" | NULL -> "NULL" | INT i -> sprintf "INT <%Ld>" i | FLOAT f -> sprintf "FLOAT <%f>" f | TEXT t -> sprintf "TEXT <%S>" t | BLOB b -> sprintf "BLOB <%d>" (String.length b) end type header = string type headers = header array type row = string option array type row_not_null = string array module Mode = struct type t = Read_write_create | Read_write | Read_only let lift = function | None -> Read_write_create | Some `READONLY -> Read_only | Some `NO_CREATE -> Read_write end module Mut = struct type t = NOTHING | NO | FULL let lift = function None -> NOTHING | Some `NO -> NO | Some `FULL -> FULL end module Cache = struct type t = NOTHING | SHARED | PRIVATE let lift = function None -> NOTHING | Some `SHARED -> SHARED | Some `PRIVATE -> PRIVATE end external db_open : mode : Mode.t -> uri : bool -> memory : bool -> mutex : Mut.t -> cache : Cache.t -> ?vfs : string -> string -> db = "caml_sqlite3_open_bc" "caml_sqlite3_open" let db_open ?mode ?(uri = false) ?(memory = false) ?mutex ?cache ?vfs name = let mode = Mode.lift mode in let mutex = Mut.lift mutex in let cache = Cache.lift cache in db_open ~mode ~uri ~memory ~mutex ~cache ?vfs name external db_close : db -> bool = "caml_sqlite3_close" external errcode : db -> Rc.t = "caml_sqlite3_errcode" external errmsg : db -> string = "caml_sqlite3_errmsg" external last_insert_rowid : db -> (int64 [@unboxed]) = "caml_sqlite3_last_insert_rowid_bc" "caml_sqlite3_last_insert_rowid" [@@noalloc] external exec : db -> ?cb : (string option array -> headers -> unit) -> string -> Rc.t = "caml_sqlite3_exec" external exec_no_headers : db -> cb : (string option array -> unit) -> string -> Rc.t = "caml_sqlite3_exec_no_headers" external exec_not_null : db -> cb : (string array -> headers -> unit) -> string -> Rc.t = "caml_sqlite3_exec_not_null" external exec_not_null_no_headers : db -> cb : (string array -> unit) -> string -> Rc.t = "caml_sqlite3_exec_not_null_no_headers" external changes : db -> (int [@untagged]) = "caml_sqlite3_changes_bc" "caml_sqlite3_changes" external prepare : db -> string -> stmt = "caml_sqlite3_prepare" external prepare_tail : stmt -> stmt option = "caml_sqlite3_prepare_tail" external recompile : stmt -> unit = "caml_sqlite3_recompile" external step : stmt -> Rc.t = "caml_sqlite3_step" external reset : stmt -> Rc.t = "caml_sqlite3_stmt_reset" external sleep : (int [@untagged]) -> (int [@untagged]) = "caml_sqlite3_sleep_bc" "caml_sqlite3_sleep" external finalize : stmt -> Rc.t = "caml_sqlite3_stmt_finalize" external data_count : stmt -> (int [@untagged]) = "caml_sqlite3_data_count_bc" "caml_sqlite3_data_count" external column_count : stmt -> (int [@untagged]) = "caml_sqlite3_column_count_bc" "caml_sqlite3_column_count" external column_blob : stmt -> (int [@untagged]) -> string option = "caml_sqlite3_column_blob_bc" "caml_sqlite3_column_blob" external column : stmt -> (int [@untagged]) -> Data.t = "caml_sqlite3_column_bc" "caml_sqlite3_column" external column_name : stmt -> (int [@untagged]) -> string = "caml_sqlite3_column_name_bc" "caml_sqlite3_column_name" external column_decltype : stmt -> (int [@untagged]) -> string option = "caml_sqlite3_column_decltype_bc" "caml_sqlite3_column_decltype" external bind : stmt -> (int [@untagged]) -> Data.t -> Rc.t = "caml_sqlite3_bind_bc" "caml_sqlite3_bind" external bind_parameter_count : stmt -> (int [@untagged]) = "caml_sqlite3_bind_parameter_count_bc" "caml_sqlite3_bind_parameter_count" external bind_parameter_name : stmt -> (int [@untagged]) -> string option = "caml_sqlite3_bind_parameter_name_bc" "caml_sqlite3_bind_parameter_name" external bind_parameter_index : stmt -> string -> (int [@untagged]) = "caml_sqlite3_bind_parameter_index_bc" "caml_sqlite3_bind_parameter_index" external clear_bindings : stmt -> Rc.t = "caml_sqlite3_clear_bindings" external busy_timeout : db -> (int [@untagged]) -> unit = "caml_sqlite3_busy_timeout_bc" "caml_sqlite3_busy_timeout" external enable_load_extension : db -> bool -> bool = "caml_sqlite3_enable_load_extension" let row_blobs stmt = Array.init (data_count stmt) (column_blob stmt) let row_data stmt = Array.init (data_count stmt) (column stmt) let row_names stmt = Array.init (data_count stmt) (column_name stmt) let row_decltypes stmt = Array.init (data_count stmt) (column_decltype stmt) (* Function registration *) external create_function : db -> string -> (int [@untagged]) -> (Data.t array -> Data.t) -> unit = "caml_sqlite3_create_function_bc" "caml_sqlite3_create_function" let create_funN db name f = create_function db name (-1) f let create_fun0 db name f = create_function db name 0 (fun _ -> f ()) let create_fun1 db name f = create_function db name 1 (fun args -> f args.(0)) let create_fun2 db name f = create_function db name 2 (fun args -> f args.(0) args.(1)) let create_fun3 db name f = create_function db name 3 (fun args -> f args.(0) args.(1) args.(2)) external delete_function : db -> string -> unit = "caml_sqlite3_delete_function" module Aggregate = struct external create_function : db -> string -> (int [@untagged]) -> 'a -> ('a -> Data.t array -> 'a) -> ('a -> Data.t) -> unit = "caml_sqlite3_create_aggregate_function_bc" "caml_sqlite3_create_aggregate_function" let create_funN db name ~init ~step ~final = create_function db name (-1) init step final let create_fun0 db name ~init ~step ~final = create_function db name 0 init (fun acc _ -> step acc) final let create_fun1 db name ~init ~step ~final = create_function db name 1 init (fun acc args -> step acc args.(0)) final let create_fun2 db name ~init ~step ~final = create_function db name 2 init (fun acc args -> step acc args.(0) args.(1)) final let create_fun3 db name ~init ~step ~final = create_function db name 3 init (fun acc args -> step acc args.(0) args.(1) args.(2)) final end module Backup = struct type t external init : dst : db -> dst_name : string -> src : db -> src_name : string -> t = "caml_sqlite3_backup_init" external step : t -> (int [@untagged]) -> Rc.t = "caml_sqlite3_backup_step_bc" "caml_sqlite3_backup_step" external finish : t -> Rc.t = "caml_sqlite3_backup_finish" external remaining : t -> (int [@untagged]) = "caml_sqlite3_backup_remaining_bc" "caml_sqlite3_backup_remaining" [@@noalloc] external pagecount : t -> (int [@untagged]) = "caml_sqlite3_backup_pagecount_bc" "caml_sqlite3_backup_pagecount" [@@noalloc] end (* Initialisation *) external init : unit -> unit = "caml_sqlite3_init" let () = Callback.register_exception "Sqlite3.InternalError" (InternalError ""); Callback.register_exception "Sqlite3.Error" (Error ""); Callback.register_exception "Sqlite3.RangeError" (RangeError (0, 0)); init ()