From 29d77de217732a99b0932cda732bc6838aeeae89 Mon Sep 17 00:00:00 2001 From: x-ream <8966188@qq.com> Date: Wed, 10 Jul 2024 22:39:15 +0800 Subject: [PATCH] InsertBuilder, UpsertBuilder support write []byte (#77) --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 89377ed..05ab0cd 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,15 @@ a tool of sql query builder, build sql for sql.DB, [sqlx](https://github.com/jmoiron/sqlx), [gorp](https://github.com/go-gorp/gorp), or build condition sql for some orm framework, like [xorm](https://github.com/go-xorm/xorm), [gorm](https://github.com/go-gorm/gorm).... -while ignore building of nil and empty string + +## Program feature: +* ignore building of nil and empty string + +## Available field of struct: + +* base: string, *bool, *int64, *float64, time.Time.... +* json: struct, map, array, slice +* bytes: []byte ## Example