通过go-mssqldb查询golang SQL Server

时间:2017-03-13 06:06:52

标签: sql-server go sql-server-2008-r2

我尝试使用go

查询SQL Server 2008 R2

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

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

我得到的错误是:

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

  

登录错误:读取tcp 192.168.91.1:15222->192.168.91.135:1433:   wsarecv:远程主机强行关闭现有连接。

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

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

SQL服务器记录似乎以指示计算机正在通话。 IP地址用于VMWare主机和VM。 SQL Server Browser服务正在运行(acct" Local Service")。 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

2 个答案:

答案 0 :(得分:1)

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

添加"加密=禁用"到连接字符串做了。我正在下载SQL Server 2008 R2 x64 as suggested here的SP3更新,并会在我花一些时间安装它。至于现在虽然查询有效。

答案 1 :(得分:0)

github repo在下面说

  

确保SQL Server Browser Windows服务正在运行且没有防火墙阻止UDP端口1434.驱动程序使用此服务来获取SQL Server实例的TCP端口

确保您的SQLbrowser服务正在您的主机上运行..

您也可以指定连接字符串以及端口号(如果您的端口是静态的,则无需启动SQLBrowser服务)