From dca45747e3ca2862aaa5da164a77cc7ae0553583 Mon Sep 17 00:00:00 2001 From: Vincent Rischmann Date: Sat, 14 Dec 2024 01:23:24 +0100 Subject: fix table used in example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index af09489..d73aa3d 100644 --- a/README.md +++ b/README.md @@ -175,7 +175,7 @@ See the section "Bind parameters and resultset rows" for more information on the You can reuse a statement by resetting it like this: ```zig const query = - \\UPDATE foo SET salary = ? WHERE id = ? + \\UPDATE employees SET salary = ? WHERE id = ? ; var stmt = try db.prepare(query); -- cgit v1.2.3