tds:用go编写的SAP(以前为sybase)ASERSIQ驱动程序 源码
tds import "github.com/thda/tds" 软件包tds是用于数据库/ sql软件包的纯Go Sybase ASE / IQ / RS驱动程序。 状态 这是一个beta版本。 该驱动程序尚未在生产工作负载上经过实战测试。 该驱动程序准备好生产后,将发布1.0版 要求 - Sybase ASE 12.5 or higher - go 1.8 or higher. 安装 软件包安装通过go-get完成: $ go get -u github.com/thda/tds 用法 它实现了大多数数据库/ sql功能。 要连接到sybase实例,请导入软件包并使用常规的数据库/ sql API: import ( "database/sql" _ "github.com/thda/tds" ) func main() { cnxStr := "tds://my_use
用户评论