This is why I love drizzle ORM

preview_player
Показать описание
Become a YT Members to get extra perks!

My Products

Useful Links
Рекомендации по теме
Комментарии
Автор

Love the shorter and more specific videos!

trebturner
Автор

no matter how fast we are, your wife will always be first

hnto
Автор

Drizzle allows you to select only what you like inside the select.

select({posts}).from(….

Or be even more specific with

select({id: posts.id}).from(….
Which is a bit nicer on your db.
Great demo

chikin
Автор

srtaight to the point!! I'm loving the path this channel has taken, good stuff bro!!

lucasfranzolin
Автор

Being able to exactly specify which fields you want back from your query in your select makes this so so powerful, saving payload size and not sending data to the frontend (or in this case the results variable) with typescript understanding it is good

thimodev
Автор

Prisma support this easily without a sweat. Where it lacks a bit are advanced usages of aggregates.

my_yt
Автор

Prisma has been able to do that for years. In a much simpler way (imo) too.

kashnigahbaruda
Автор

I've tried Drizzle but I struggled a LOT with the typing. You can infer a type from a schema but infering types from queries (even more when doing joins) is a big mess to me. Would love to see a video about that!

maelstrom
Автор

I actively use SQL for work and I always struggled using ORM's like Entity Framework etc. First time in my life I saw a ORM which is exactly looks same to SQL and very easy to use for SQL Experienced person like me. Thank you for the video!

kaansal
Автор

Much love as always from Uganda "mentor"...

loorinho
Автор

Make a crash course on complex sql query using drizzle ORM. Love to see your contents

TaohidKhan-utgf
Автор

What keyboard are you using? It sounds really nice

Prince_
Автор

I'm loving Drizzle for querying. Now I'd truly love a tutorial on how to handle migrations on a project with Drizzle and Supabase. Still trying to wrap my head around it

nicolasramos
Автор

I'd love to see the actual generated query

fottymutunda
Автор

I like how, contrary to Prisma, everything is still in TypeScript.

rod
Автор

nice vid! I'm wondering what recording app you use to have rectangle video of yourself on the side

giandenorte
Автор

Hey there...love the vids. A question tho...I took a look at your implementation of "database" in your SAAS project on github and was wondering why you stored the db instance in a global variable (. (global as any).database=....) when in dev mode but not in production? What's different about dev mode that makes it a good idea to do this?

DaveMacpherson
Автор

I just started using drizzle and turso for my new project and it makes using sqlite so much better in typescript

codingwithjamal
Автор

The API looks exactly like Doctrine (PHP) which looks exactly like Hibernate (Java).

Cool video :)

DaviMartins
Автор

personally, the day I moved from Prisma to Drizzle was when I inspected generated sql queries with some joins. Prisma generated several db queries and joined them "internally". Drizzle creates a single db query. There might be technical explanation why this is not bad, but it goes against all my believes of handling relational databaes and I simply cannot stand it innmy code. And drizzle magic sql `` is amazing

MirkoVukusic