From 353895fdbeb268ffc0b968151166edc8dc14b352 Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Fri, 3 Jun 2022 12:47:52 +0300 Subject: [PATCH] added 'sqlite' key to the BuilderFuncMap for noncgo sqlite driver support --- db.go | 1 + 1 file changed, 1 insertion(+) diff --git a/db.go b/db.go index e111dfc..11aa1f5 100644 --- a/db.go +++ b/db.go @@ -73,6 +73,7 @@ type ( // You may modify this variable to add the builder support for a new DB driver. // If a DB driver is not listed here, the StandardBuilder will be used. var BuilderFuncMap = map[string]BuilderFunc{ + "sqlite": NewSqliteBuilder, "sqlite3": NewSqliteBuilder, "mysql": NewMysqlBuilder, "postgres": NewPgsqlBuilder,