# HG changeset patch # User Adam Chlipala # Date 1240682678 14400 # Node ID 7fa4871e8272920451b1f35bda8fa1ad715d9d19 # Parent d049d31a19663fd5221cda5ba84627c3478397ed Prepared statements with blobs diff -r d049d31a1966 -r 7fa4871e8272 src/cjr_print.sml --- a/src/cjr_print.sml Sat Apr 25 13:59:11 2009 -0400 +++ b/src/cjr_print.sml Sat Apr 25 14:04:38 2009 -0400 @@ -1648,6 +1648,19 @@ newline, newline, + string "const int paramFormats[] = { ", + p_list_sep (box [string ",", space]) + (fn (_, t) => if isBlob t then string "1" else string "0") ets, + string " };", + newline, + string "const int paramLengths[] = { ", + p_list_sepi (box [string ",", space]) + (fn i => fn (_, Blob) => string ("arg" ^ Int.toString (i + 1) ^ ".size") + | (_, Nullable Blob) => string ("arg" ^ Int.toString (i + 1) + ^ "?arg" ^ Int.toString (i + 1) ^ "->size:0") + | _ => string "0") ets, + string " };", + newline, string "const char *paramValues[] = { ", p_list_sepi (box [string ",", space]) (fn i => fn (_, t) => p_ensql t (box [string "arg", @@ -1666,7 +1679,7 @@ string (Int.toString n), string "\", ", string (Int.toString (length (getPargs dml))), - string ", paramValues, NULL, NULL, 0);"], + string ", paramValues, paramLengths, paramFormats, 0);"], newline, newline, diff -r d049d31a1966 -r 7fa4871e8272 src/prepare.sml --- a/src/prepare.sml Sat Apr 25 13:59:11 2009 -0400 +++ b/src/prepare.sml Sat Apr 25 14:04:38 2009 -0400 @@ -47,6 +47,8 @@ SOME ("$" ^ Int.toString (n + 1) ^ "::bool" :: ss, n + 1) | EFfiApp ("Basis", "sqlifyTime", [e]) => SOME ("$" ^ Int.toString (n + 1) ^ "::timestamp" :: ss, n + 1) + | EFfiApp ("Basis", "sqlifyBlob", [e]) => + SOME ("$" ^ Int.toString (n + 1) ^ "::bytea" :: ss, n + 1) | EFfiApp ("Basis", "sqlifyChannel", [e]) => SOME ("$" ^ Int.toString (n + 1) ^ "::int8" :: ss, n + 1) | EFfiApp ("Basis", "sqlifyClient", [e]) =>