Awesome Go

go-adodb

CategoryDatabase Drivers
SubcategoryRelational Database Drivers
Stars0

Microsoft ActiveX Object DataBase driver for go that uses database/sql

About go-adodb

go-adodb

Microsoft ADODB driver conforming to the built-in database/sql interface

Installation

This package can be installed with the go get command:

go get github.com/mattn/go-adodb

Documentation

API documentation can be found here: http://godoc.org/github.com/mattn/go-adodb

Examples can be found under the ./_example directory

Note

If you met the issue that your apps crash, try to import blank import of runtime/cgo like below.

import (
    ...
    _ "runtime/cgo"
)

License

MIT: http://mattn.mit-license.org/2015

Author

Yasuhiro Matsumoto (a.k.a mattn)

Frequently Asked Questions

What is go-adodb?

go-adodb is a Database Drivers library for the Go programming language. Microsoft ActiveX Object DataBase driver for go that uses database/sql

How do I install go-adodb?

Install go-adodb with the Go module system using `go get mattn/go-adodb`. Check the repository for the current installation instructions.

What category does go-adodb belong to?

go-adodb is listed under Database Drivers, specifically Relational Database Drivers.

← Back to Relational Database Drivers