diff options
| -rw-r--r-- | sqlite.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -771,7 +771,7 @@ pub const Db = struct { | |||
| 771 | /// bindings to values, but have multiple commands inside. | 771 | /// bindings to values, but have multiple commands inside. |
| 772 | /// | 772 | /// |
| 773 | /// Exmaple: 'create table a(); create table b();' | 773 | /// Exmaple: 'create table a(); create table b();' |
| 774 | pub fn execMulti(self: *Self, comptime query: []const u8, options: QueryOptions) !void { | 774 | pub fn execMulti(self: *Self, query: []const u8, options: QueryOptions) !void { |
| 775 | var new_options = options; | 775 | var new_options = options; |
| 776 | var sql_tail_ptr: ?[*:0]const u8 = null; | 776 | var sql_tail_ptr: ?[*:0]const u8 = null; |
| 777 | new_options.sql_tail_ptr = &sql_tail_ptr; | 777 | new_options.sql_tail_ptr = &sql_tail_ptr; |