在 Go Lang 中连接到 SQL Server 2014

Connect to SQL Server 2014 in Go Lang

我在 windows 7 机器上有一个工作数据库连接到 SQL Server 2008 R2 使用:

     db, err = sqlx.Open("lodbc", connString)

正在导入以下包

     "github.com/LukeMauldin/lodbc"
     "github.com/jmoiron/sqlx"

但现在使用相同的驱动程序并将连接字符串更改为位于远程 windows 8 机器上的 2014 SQL 服务器数据库,我连接成功但 sqlx 查询中断说

datasource 2015/03/23 09:09:37 http: panic serving 127.0.0.1:49346: {IM002} [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified

我可以使用其他驱动程序吗?我尝试了 code.google.com/p/odbc 和 database/mssql 包,但没有用。

谢谢

尝试 database/sql with the github.com/denisenkom/go-mssqldb 驱动程序。