Microsoft ADODB driver conforming to the built-in database/sql interface
This package can be installed with the go get command:
go get github.com/mattn/go-adodb
API documentation can be found here: http://godoc.org/github.com/mattn/go-adodb
Examples can be found under the ./_example
directory
If you met the issue that your apps crash, try to import blank import of runtime/cgo
like below.
import (
...
_ "runtime/cgo"
)
MIT: http://mattn.mit-license.org/2015
Yasuhiro Matsumoto (a.k.a mattn)