From c0506c7a843898b0fc3bd50685f6843ca600d7ba Mon Sep 17 00:00:00 2001 From: Alexander Matveev Date: Tue, 26 Sep 2023 23:15:40 +0300 Subject: [PATCH] Fix readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fcf7aee..d1fe60e 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ func main(){ // ... rows.Scan(dbmap.Scan(&s)...) // ... - squirrel.Insert("table").Columns(structColumns...) + squirrel.Insert("table").Columns(structColumns...).Values(dbmap.Values(e)...) // ... }