Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattn/go-adodb
Microsoft ActiveX Object DataBase driver for go that using exp/sql
https://github.com/mattn/go-adodb
Last synced: 5 days ago
JSON representation
Microsoft ActiveX Object DataBase driver for go that using exp/sql
- Host: GitHub
- URL: https://github.com/mattn/go-adodb
- Owner: mattn
- License: mit
- Created: 2011-11-14T04:32:50.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2022-04-21T14:35:58.000Z (over 2 years ago)
- Last Synced: 2024-12-31T19:12:53.393Z (12 days ago)
- Language: Go
- Homepage: http://mattn.kaoriya.net/
- Size: 65.4 KB
- Stars: 143
- Watchers: 12
- Forks: 37
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-go - go-adodb - Microsoft ActiveX Object DataBase driver for go that uses database/sql. (Database Drivers / Relational Database Drivers)
- awesome-go-storage - go-adodb - Microsoft ActiveX Object DataBase driver for go that using database/sql. (Database Drivers)
- awesome-go - go-adodb - Microsoft ActiveX Object DataBase driver for go that using exp/sql - ★ 84 (Database Drivers)
- awesome-go-extra - go-adodb - 11-14T04:32:50Z|2022-04-21T14:35:58Z| (Generators / Relational Database Drivers)
- awesome-go-storage - go-adodb - Microsoft ActiveX Object DataBase driver for go that using database/sql. (Database Drivers)
README
# 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.
```go
import (
...
_ "runtime/cgo"
)
```## License
MIT: http://mattn.mit-license.org/2015
## Author
Yasuhiro Matsumoto (a.k.a mattn)