gorqlite icon indicating copy to clipboard operation
gorqlite copied to clipboard

A Go client for rqlite, the distributed database built on SQLite

Results 7 gorqlite issues
Sort by recently updated
recently updated
newest added

Hi @otoolep! I've been doing some cluster testing in my local network using three computers running rqlited, and a single instance of Mailpit. While ingesting a constant stream of incoming...

Please let me know if you like this so I can polish it.

converting driver.Value type float64 ("2.00000231e+08") to a int64

I would like to include the rqlite version in my application logs, but I didn't find a wrapper for the [rqlite status API](https://rqlite.io/docs/guides/monitoring-rqlite/#status-api). Can that be added, or should we...

When I'm writing SQL, sometimes, I don't get it right. However, the error I get back just tells me that somewhere, there's a problem: https://github.com/rqlite/gorqlite/blob/12ae7d03ef19e6005d0cff82c6bf74000ea69e43/query.go#L307-L309 There's no additional context available...

In this simple example: ```go var db *gorqlite.Connection func storeUser(email string) error { var userName string wr, err := db.WriteOneParameterized(gorqlite.ParameterizedStatement{ Query: "INSERT INTO users (email) VALUES (?)", Arguments: []any{email}, })...