sqlboiler icon indicating copy to clipboard operation
sqlboiler copied to clipboard

Generate a Go ORM tailored to your database schema.

Results 114 sqlboiler issues
Sort by recently updated
recently updated
newest added

Enables IN/NIN whereHelper function generation for nullable types addressing issue #851. Based on #910. The generated helpers take the underlying primitive types, so that a `null.String` column would generate a...

I found errors in some of the descriptions in README. I just fixed them. ## refs: `queries Raw` https://github.com/volatiletech/sqlboiler/blob/fa3f9bb8485fce386e16a7962dd143aeede8d14b/queries/query.go#L102-L110 `queries (q *Query) Bind` https://github.com/volatiletech/sqlboiler/blob/fa3f9bb8485fce386e16a7962dd143aeede8d14b/queries/reflect.go#L128

If you're having a generation problem please answer these questions before submitting your issue. Thanks! ### What version of SQLBoiler are you using (`sqlboiler --version`)? SQLBoiler v4.12.0 ### What is...

bug

This is probably a non-starter, but it would be great (albeit probably error-prone), to be able to specify relationships in config rather than relying on foreign keys. This would allow...

help wanted
feature request

Will solve at lest part of https://github.com/volatiletech/sqlboiler/issues/1137

Hello, this is an attempt to fix #1164. If I were to do something like: ```go var slice []*struct{ User *models.User `boil:",bind"` } models.Users().BindG(nil, &slice) ``` It wouldn't have worked...

I'm trying to use Bind to grab data from the following aggregation query. ``` SELECT transactions.id as id , transactions.date as date , sum(line_items.debit) as debit , sum(line_items.credit) as credit...

help wanted

### What version of SQLBoiler are you using (`sqlboiler --version`)? ``` SQLBoiler v3.7.1 ``` ### What is your database and version (eg. Postgresql 10) Postgres 10.6 ### If this happened...

enhancement

If you're having a generation problem please answer these questions before submitting your issue. Thanks! ### What version of SQLBoiler are you using (`sqlboiler --version`)? SQLBoiler v3.6.1 ### What is...

Enums are not generated (even when valid with only [a-z] letters) ### What version of SQLBoiler are you using (sqlboiler --version)? ``` $ sqlboiler --version SQLBoiler v4.11.0 ``` Installed today,...

help wanted
feature request