From 33002c9c8c98124596109c6f4e47176ef716948e Mon Sep 17 00:00:00 2001 From: Thomas Chan Date: Tue, 11 Apr 2023 14:00:21 -0700 Subject: [PATCH] Add bind for go-ora driver ("oracle"). --- bind.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bind.go b/bind.go index ec0da4e7..3e07785d 100644 --- a/bind.go +++ b/bind.go @@ -24,7 +24,7 @@ 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"}, + NAMED: []string{"oci8", "ora", "goracle", "godror", "oracle"}, AT: []string{"sqlserver"}, }