From 25a51134cd15acef20d6fe7e3f06ec1555e360ec Mon Sep 17 00:00:00 2001 From: Qian Deng Date: Tue, 28 May 2024 10:11:48 +0800 Subject: [PATCH] Add azuresql driver bind --- bind.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bind.go b/bind.go index ec0da4e7..e6980392 100644 --- a/bind.go +++ b/bind.go @@ -22,10 +22,10 @@ const ( ) var defaultBinds = map[int][]string{ - DOLLAR: []string{"postgres", "pgx", "pq-timeouts", "cloudsqlpostgres", "ql", "nrpostgres", "cockroach"}, - QUESTION: []string{"mysql", "sqlite3", "nrmysql", "nrsqlite3"}, - NAMED: []string{"oci8", "ora", "goracle", "godror"}, - AT: []string{"sqlserver"}, + DOLLAR: {"postgres", "pgx", "pq-timeouts", "cloudsqlpostgres", "ql", "nrpostgres", "cockroach"}, + QUESTION: {"mysql", "sqlite3", "nrmysql", "nrsqlite3"}, + NAMED: {"oci8", "ora", "goracle", "godror"}, + AT: {"sqlserver", "azuresql"}, } var binds sync.Map