chore: ⬆️ Vendor for new deps

This commit is contained in:
2026-02-07 15:51:20 +02:00
parent 88589e00e7
commit 47bf748fd5
128 changed files with 83822 additions and 29 deletions

View File

@@ -0,0 +1,15 @@
//go:build !go1.13
// +build !go1.13
package mssql
import (
"fmt"
"github.com/microsoft/go-mssqldb/msdsn"
)
func wrapConnErr(p *msdsn.Config, err error) error {
f := "unable to open tcp connection with host '%v:%v': %v"
return fmt.Errorf(f, p.Host, resolveServerPort(p.Port), err)
}