Dan Kochetov

Results 66 comments of Dan Kochetov

Thanks for investigating this @MattMsh! I don't think it's a SvelteKit bug, but rather missing ESM support on drizzle-zod/drizzle-orm side - it seems like your projects run in ESM mode,...

This should now be fixed, because the ESM support was implemented.

Also related to https://github.com/drizzle-team/drizzle-orm/issues/261

@iyxan23 I'll probably work on this one soon, since I need it on a project I'm working on as well πŸ˜… All `tx.rollback()` does is throwing `TransactionRollbackError`, so I was...

@cdcarson yes, you can throw any error and it will be re-thrown from `db.transaction()`

@Jarred-Sumner was it fixed? I'm still receiving this error trying to run a Koa server: ```zsh > bun run src/index.ts 153 | */ 154 | 155 | function useColors() {...

Already fixed, just not released to latest. You can use `drizzle-orm@beta` for now.

Could you show how it looks like in SQL?

One solution would be a many:many table between shareholders and people/organizations, so that shareholders will always reference a row in that table. But then the many:many table will have null...