db icon indicating copy to clipboard operation
db copied to clipboard

Data access layer for PostgreSQL, CockroachDB, MySQL, SQLite and MongoDB with ORM-like features.

Results 131 db issues
Sort by recently updated
recently updated
newest added

Does upper.io impose any particular timeout customizations that would alter underlying go-sql-driver/mysql timeouts? I'm trying to diagnose an issue with a loadbalanced ProxySQL setup being treated as unavailable to an...

Here is their github driver for Go. It is a NoSQL type of DB that also has transactions. https://github.com/fauna/faunadb-go Please let me know if this is something I would need...

Is MongoDB projection supported as i want to limit the number of fields returned in all documents that match a given query.

Any information on adding support for aerospike?

My scenario is I don't want to first read the whole row into a slice of matching row structs, I'd like to read just one column value so I came...

unconfirmed

```go type broken string func (b broken) Value() (driver.Value, error) { panic("this is a broken valuer") return nil,nil } val := broken("record") query := conn.Select("*").From("mytable").Where(db.Cond{"column_name": val}) // this will panic...

unconfirmed

This is not clear from the documentation, but if I use a type that implements `driver.Value` in a `Where()` or a `Find()`, will this package call `Value()` on the type...

By default, sending multiple constraints to upper.io `Find()` behaves as a union (OR), which may surprise users expecting an intersection (AND). Can we make this default behavior more clear in...

Hi, I want to `db.And()` a dynamic array of `db.Cond`'s. The documentation appears to support this: > Cond is a map that defines conditions for a query and satisfies the...