How to handle IDs with custom generation logic? #1354
Replies: 2 comments
-
The best I can think of is adding another file next to the generated files and implement |
Beta Was this translation helpful? Give feedback.
-
sqlc doesn't really care if it is auto-incrementing or not, integer, or text or anything. Since sqlc is "just SQL" - All it cares about it whether the ID is generated by sql or not. For example: here is using a postgres function to generate an ID create table thing (
id TEXT NOT NULL,
name TEXT NOT NULL
);
-- name: CreateThing :one
INSERT INTO thing (id, name)
VALUES(gen_random_uuid(), sqlc.arg('name'))
RETURNING *; Or you could also do what @Jille suggested. -- name: CreateThing :one
INSERT INTO thing (id, name)
VALUES(sqlc.arg('id'), sqlc.arg('name'))
RETURNING *; And then just wrap the function yourself. // go boilerplate omitted
func CreateThing(name: string) {
id := generateId();
queries.CreateThing(CreateThingParams{ID: id, Name: name})
} I think if you are just using sqlc to create model objects, you will likely think sqlc is lacking a lot of features. The true power is by leveraging SQL itself (in my opinion). |
Beta Was this translation helpful? Give feedback.
-
Hello,
I am relatively fresh to sqlc, so please forgive me if I am asking something obvious. We are in considerations of replacing Gorm with sqlc for our production applications, however we have identified one tiny issue. Many of our tables do not follow the standard auto-increment ID logic but are custom varchars, based on certain conditions.
In Gorm, we could tackle this easily through the
BeforeCreate
hooks. However, in the way sqlc creates models, we don't seem to have much control over the ID generation logic (other than purely addressing it on the Postgres side).What would advise me to do? I saw that the configuration allows telling the generator to use predefined custom types for some of the table columns. Is this the way to go? If we create custom
ID
types on our side which are based onstring
or conform to theStringer
interface, we should in theory be able to generate custom IDs at the time of querying. Am I right?Beta Was this translation helpful? Give feedback.
All reactions