ozzo-dbx icon indicating copy to clipboard operation
ozzo-dbx copied to clipboard

A Go (golang) package that enhances the standard database/sql package by providing powerful data retrieval methods as well as DB-agnostic query building capabilities.

Results 41 ozzo-dbx issues
Sort by recently updated
recently updated
newest added

`SelectQuery` doesn't implement `Expression`, so I can't use it in `ExistsExp` or `InExp`. I wrote a function to convert it into an `Expression`: ```go func SelectExp(query *dbx.SelectQuery) dbx.Expression { built...