go-crate icon indicating copy to clipboard operation
go-crate copied to clipboard

Golang Sql Driver for Crate Data Storage. (https://crate.io/)

Results 6 go-crate issues
Sort by recently updated
recently updated
newest added

Since one cannot yet replace the driver.DefaultParameterConverter to properly handle type conversions (see https://github.com/golang/go/issues/18415) I've made a quick patch to automatically handle TimeStamp (int64) columns conversion to time.Time by using...

enhancement

Since this driver supports `database/sql` has anyone tried [sqlx](https://github.com/jmoiron/sqlx) with it? That would be a great convenience with this library.

I noticed the bulk services is not implemented, I am not sure if you wanted add support for it or not, but I thought I would toss out a possible...

it was impossible to extract column types with Rows.ColumnTypes() function. but Crate's JSON response already contains column type information(col_types). this commit contains implement `col_types`. Look for following example codes. Example...

I've been working on a new project using Crate. We were attracted to Crate primarily for the distributed features it offers with relatively little hassle. However, currently, this driver is...