David L. Bowman
David L. Bowman
DTDrizzle Team
Created by uri on 3/6/2025 in #help
Best practises for handling postresql errors?
id be interested in hearing what other people do.
6 replies
DTDrizzle Team
Created by uri on 3/6/2025 in #help
Best practises for handling postresql errors?
i'm currently using
const task = Effect.tryPromise({
try: () =>
db
.select({ role: users.role })
.from(users)
.where(eq(users.emailHash, emailHash)),
catch: (error) => new UnexpectedError({ reason: error }),
});
const task = Effect.tryPromise({
try: () =>
db
.select({ role: users.role })
.from(users)
.where(eq(users.emailHash, emailHash)),
catch: (error) => new UnexpectedError({ reason: error }),
});
6 replies
DTDrizzle Team
Created by uri on 3/6/2025 in #help
Best practises for handling postresql errors?
i was literally about to ask this same question.
6 replies