drizzle-orm icon indicating copy to clipboard operation
drizzle-orm copied to clipboard

Headless TypeScript ORM with a head. Runs on Node, Bun and Deno. Lives on the Edge and yes, it's a JavaScript ORM too 😅

Results 759 drizzle-orm issues
Sort by recently updated
recently updated
newest added

enhancement
SQLite
MySQL
PostgreSQL

- [x] Orm - [ ] Kit

enhancement
SQLite
MySQL
PostgreSQL

In Node.js if you are using ES modules (by either having an `.mjs` / `.mts` file, or adding `"type": "module"` in the `package.json`), importing the various `drizzle-orm` modules has to...

enhancement

### What version of `drizzle-orm` are you using? 0.24.2 ### What version of `drizzle-kit` are you using? 0.17.5 ### Describe the Bug Right now drizzle has JSON under `blob` when...

enhancement

### What version of `drizzle-orm` are you using? 0.25.4 ### What version of `drizzle-kit` are you using? 0.17.6 ### Describe the Bug After updating to the latest version of `drizzle-orm`,...

bug

### Describe want to want The idea is to use [AsyncLocalStorage](https://nodejs.org/api/async_context.html) for automatically detecting transaction context, without using transaction object. Example how it should look like: ```typescript await db.transaction(async ()...

enhancement

I just went through this document a few days ago and found it a bit confusing being new to drizzle. I went ahead and cleared up the confusing parts, which...

### Describe want to want Currently when do a query similar to the following the return type is `T[]`. ```ts const result: User[] = await db .select() .from(users) .where(eq(users.email, email))...

enhancement