pg icon indicating copy to clipboard operation
pg copied to clipboard

Golang ORM with focus on PostgreSQL features and performance

Results 109 pg issues
Sort by recently updated
recently updated
newest added

Will I be able to make my own Joins query and somehow go-pg can map the fields to the corresponding model? ``` err := ecrawler.DB2.Model(&products). Column("product.*"). Joins("variants on ...."). Joins("options...

I'm having trouble getting a has one relationship to work. I followed the wiki's examples and have been trying this for hours. I know the table names and fields are...

Hello, I must be doing something silly, because I just cannot call a simple server function using go-pg. I have this server function which I call with user data, it...

I would like to implement a some shared functionality across models. For example, a method that looks for one result but does not error if the one result is not...

I need to execute an .sql script that raises a notice and I need to catch this text and evaluate. can pg capable of returning the standard out sql?

I am trying to load nested `has_many` from `products` table but it seems with large list of IDs the query generated huge IN list is not ideal. Can I do...

I'm studying Golang trying to build an application. I have written many models: - Player - Book - Score - Referee - Life - Team - Doc - Family and...

type User struct { ... Tags []string } Users have an array of tags, is it possible to search users based on one or multiple tags? Something similar to this:...

I am connecting to PgBouncer DB and some of the query get errors, found some fix online but apparently I need to enable `binary_parameters=true` in the URI. How do I...

Is there a way? I am having a URI like this ``` "DATABASE_URL": "postgresql://user:password@hostname:25061/dbname?sslmode=require&binary_parameters=yes", ``` I tried to used `ParseURL` but I don't think it support `binary_parameters=yes` right?