gpt4 book ai didi

sql-server - 通过 go-mssqldb 查询 golang SQL Server

转载 作者:IT王子 更新时间:2023-10-29 02:12:22 25 4
gpt4 key购买 nike

我正在尝试使用 go 查询 SQL Server 2008 R2

https://github.com/denisenkom/go-mssqldb .

SQL Server 2008 R2实例在Windows Server 2008 R2下的虚拟机上;我在 Win 7 VMWare 主机下进行开发并从那里运行程序以查询 VM 上的数据库。数据库已启动并运行托管在服务器 VM 上的应用程序。代码如下。

我得到的错误是:

[编辑 2017-03-14:指定端口时出现新错误]

Login error: read tcp 192.168.91.1:15222->192.168.91.135:1433: wsarecv: An existing connection was forcibly closed by the remote host.

指定 SQL Server 端口 (1433) 时返回此错误。包括或不包括实例不会改变它。

SQL Server 配置为允许远程连接、SQL Server 身份验证、连接未加密、启用 TCP/IP、IPALL 端口=1433。防火墙在 80、443、1433、1434 上为 TCP 打开; 1433、1434 上的 UDP。在将 db 实例添加到连接字符串之前,我遇到了不同的错误。

SQL 服务器日志似乎表明机器正在对话。 IP 地址用于 VMWare 主机和 VM。 SQL Server Browser 服务正在运行(帐户“本地服务”)。 SQL Server 代理运行。我试过使用 ODBC 和 ADO 连接字符串,但似乎遇到了同样的错误。任何帮助将不胜感激。

package main
import (
// Import go-mssqldb strictly for side-effects
_ "github.com/denisenkom/go-mssqldb"
"database/sql"
"log"
)

func main() {
var n_tables int

println (sql.Drivers())

// URL connection string formats
// sqlserver://sa:mypass@localhost?database=master&connection+timeout=30 // username=sa, password=mypass.
// sqlserver://sa:my%7Bpass@somehost?connection+timeout=30 // password is "my{pass"
// note: pwd is "myP@55w0rd"
connectString := "sqlserver://SBM:myP%4055w0rd@VM17:1433?database=AE&connection+timeout=30"
println("Connection string=" , connectString )

println("open connection")
db, err := sql.Open("mssql", connectString)
defer db.Close()
println ("Open Error:" , err)
if err != nil {
log.Fatal(err)
}

println("count records in TS_TABLES & scan")
err = db.QueryRow("Select count(*) from ts_tables").Scan(&n_tables)
if err != nil {
log.Fatal(err)
}
println ("count of tables" , n_tables)

println("closing connection")
db.Close()
}

输出:

[2/2]0xc042002c20
Connection string= sqlserver://VM17_SBM:P%4055word@VM17:1433?database=VM17_SBM_AE_OE_REPO_CL&connection+timeout=30
open connection
Open Error: (0x0,0x0)
count records in TS_TABLES & scan
2017/03/14 19:48:01 Login error: read tcp 192.168.91.1:15222->192.168.91.135:1433: wsarecv: An existing connection was forcibly closed by the remote host.
exit status 1

最佳答案

我在 a comment by the library author on Github 中找到了答案.

在连接字符串中添加“encrypt=disable”就可以了。我正在下载 SQL Server 2008 R2 x64 的 SP3 更新 as suggested here当我有时间时会安装它。至于现在,尽管查询有效。

关于sql-server - 通过 go-mssqldb 查询 golang SQL Server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42757477/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com