You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
when i use "github.com/lib/pq" as sql driver to connect to postgressql
i can use func DialOpen(d Dialer, dsn string) (_ driver.Conn, err error) method to connect to db with my custom dialer
and i suggest "github.com/denisenkom/go-mssqldb" need a same one
Describe the solution you'd like
add a method like func DialOpen(d Dialer, dsn string) (_ driver.Conn, err error) before create connection
Describe alternatives you've considered
Additional context
"github.com/go-sql-driver/mysql" have a similar method to use my own custom dialer, it is func RegisterDial(network string, dial DialFunc)
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
when i use "github.com/lib/pq" as sql driver to connect to postgressql
i can use
func DialOpen(d Dialer, dsn string) (_ driver.Conn, err error)
method to connect to db with my custom dialerand i suggest "github.com/denisenkom/go-mssqldb" need a same one
Describe the solution you'd like
add a method like
func DialOpen(d Dialer, dsn string) (_ driver.Conn, err error)
before create connectionDescribe alternatives you've considered
Additional context
"github.com/go-sql-driver/mysql" have a similar method to use my own custom dialer, it is
func RegisterDial(network string, dial DialFunc)
The text was updated successfully, but these errors were encountered: