Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/herenow/go-crate
Golang Sql Driver for Crate Data Storage. (https://crate.io/)
https://github.com/herenow/go-crate
crate-data-storage go golang-sql-driver
Last synced: 20 days ago
JSON representation
Golang Sql Driver for Crate Data Storage. (https://crate.io/)
- Host: GitHub
- URL: https://github.com/herenow/go-crate
- Owner: herenow
- License: mit
- Created: 2014-07-30T21:36:40.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-06-06T12:33:06.000Z (over 1 year ago)
- Last Synced: 2024-11-25T09:41:49.066Z (29 days ago)
- Topics: crate-data-storage, go, golang-sql-driver
- Language: Go
- Size: 45.9 KB
- Stars: 65
- Watchers: 11
- Forks: 19
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
go-crate
========[![CircleCI](https://circleci.com/gh/herenow/go-crate.svg?style=svg)](https://circleci.com/gh/herenow/go-crate)
Golang Sql Driver for Crate Data Storage. (https://crate.io/)
[http://godoc.org/github.com/herenow/go-crate](http://godoc.org/github.com/herenow/go-crate)
[http://golang.org/pkg/database/sql/](http://golang.org/pkg/database/sql/)
Install & Usage
--------
```
go get github.com/herenow/go-crate
``````golang
import "database/sql"
import _ "github.com/herenow/go-crate"db, err := sql.Open("crate", "http://localhost:4200/")
```Not Supported SQL Functions
------Some functions of the `database/sql` package may not be supported, due to a lack of support of Crate or this package.
`Transactions` are not supported by crate.Notes
-----
* Feel free to send in contributions to this package.TODO
-----
* Possible type checking when receving data from crate, and convert it to documented Go types.