What is the Django ORM?

  Рет қаралды 93,352

Very Academy

Very Academy

Күн бұрын

Пікірлер: 59
@theblackelephant
@theblackelephant 2 жыл бұрын
On behalf of self learning students of youtube university we want to thanks you for your great content.
@aashayamballi
@aashayamballi 4 жыл бұрын
Congratulations on 2K subs!! 🎉🎉
@veryacademy
@veryacademy 4 жыл бұрын
🎉 Thank you - slowly building up steam!
@davidrosen2705
@davidrosen2705 4 жыл бұрын
@@veryacademy when you get to 200k and be big shot youtuber remember loyal fans
@repotranstech9614
@repotranstech9614 2 жыл бұрын
Why doesn't this channel has more subscribers.?super helpful.
@amroulouay6819
@amroulouay6819 Жыл бұрын
Could you please include the PowerPoint presentations you are using in this series in the description?
@oauth9728
@oauth9728 4 жыл бұрын
What a detailed tutorial. THANKS. pls do Django Ecommerce, Django Multi-choice quiz series 🙏
@veryacademy
@veryacademy 4 жыл бұрын
Django commerce is just big one for sure. I will promise that this will happen. I will share with you my overall big plan for the Django content on this channel - they both feature. This all just takes time at the moment. If/when/as things pick up on the channel I will dedicate more time to making bigger projects. In some respects I am only been doing this for a few months - still learning and trying to make small improvements to content and delivery style etc. I would imaging that before Christmas I would have started Ecommerce - the quiz - well that is really simple and fun one to do....😁 will see 👍
@oauth9728
@oauth9728 4 жыл бұрын
Thanks for your quick response.
@vinay__baliyan
@vinay__baliyan 3 жыл бұрын
You never disappoint me. Awesome tutorial. Really appreciate it.
@usaava
@usaava 3 жыл бұрын
Finally, I found you! Thanks so much for your video!
@adityakotikalapudi329
@adityakotikalapudi329 3 жыл бұрын
Very nice series thanks for your great effort I loved all your series django-restframework and all other in django ❤️❤️👍 keep doing more all the best
@_radix_
@_radix_ 2 жыл бұрын
Man you are a legend!
@tounsimed5202
@tounsimed5202 2 жыл бұрын
sir Do I need to learn sql or ORM is enough for django projects ? and I want to tell you , you are a great teacher thank you so much for your hardwork
@veryacademy
@veryacademy 2 жыл бұрын
You will be fine with the ORM up to a point when you start scaling your app to much larger audiences. At that point, depending upon the complexity of your queries, you might start to look at the SQL to optimise further
@eraofmaths
@eraofmaths 2 жыл бұрын
@@veryacademy thanks man
@AlanTinoco
@AlanTinoco 3 жыл бұрын
Man, what a tutorial! Thank u so much!
@bagurashamuddeen7554
@bagurashamuddeen7554 4 жыл бұрын
Great. You always take your time to impact. Good contents.
@veryacademy
@veryacademy 4 жыл бұрын
I appreciate that! I try and use signals from comments to guide me 👍
@rajughorai3909
@rajughorai3909 4 жыл бұрын
thanks for the awesome video series
@veryacademy
@veryacademy 4 жыл бұрын
Glad you enjoy it! Thank you!
@lucastavares4908
@lucastavares4908 4 жыл бұрын
Nice content, keep going man!!
@veryacademy
@veryacademy 4 жыл бұрын
Appreciate it!
@mdsamiulislam2522
@mdsamiulislam2522 3 жыл бұрын
you have said in ur video at 9:56 minute that Queries can perform better. do u mean that direct sql query performs better than ORM?
@veryacademy
@veryacademy 3 жыл бұрын
Hi Md - for smaller projects the ORM provides, you might start optimising further at later stages of your project with direct SQL queries
@iopyrb
@iopyrb 5 ай бұрын
does ORM replace the use of SQL?
@veryacademy
@veryacademy 5 ай бұрын
Yes for the developer, but it translates your requests into sql behind the scenes
@iopyrb
@iopyrb 5 ай бұрын
@@veryacademy yes, i mean.. can replace it? ( like just using orm in any project not using raw sql)
@SOHAILKHAN-iu8fu
@SOHAILKHAN-iu8fu 2 жыл бұрын
we love you sir
@veryacademy
@veryacademy 2 жыл бұрын
Thanks Sohail, no need for the sir though, I am not knighted ;)
@egehurturk6209
@egehurturk6209 4 жыл бұрын
You are the best
@veryacademy
@veryacademy 4 жыл бұрын
Thank you once again 👍😁
@createlifejr
@createlifejr 4 жыл бұрын
Hey Zander, So does using, Students.objects.raw('SELECT * FROM Students"), something like that can improve performance compared to Students.objects.all()? I have seen this in SO and was kinda confused.
@veryacademy
@veryacademy 4 жыл бұрын
Evening - that is a great question. I think I can summarise this by saying ORM can be comparable in performance to using RAW queries (in most cases) (you can also bypass the ORM completely) - I will show you that shortly in the up and coming tutorials. There are times when you want to write more complex queries - so you can if you like, revert to writing your own SQL. With the ORM you are not tied to it. In your question - the query is straight forward and probably wouldn't see any real difference. What is important is - Caching - this is one of the best methods to reduce DB related performance. There are different kinds of caching implementations in Django - cached property on model - query caching and template caching. 👍 But don't get too tied up with RAW for now. If you really wanted to move down this path, learning SQL would be more worth your time.
@createlifejr
@createlifejr 4 жыл бұрын
@@veryacademy Thank you.. got it! Will you be doing any courses related to caching anytime soon?
@veryacademy
@veryacademy 4 жыл бұрын
@@createlifejr Been asked many times - its a tricky one to teach to be honest. I have been slowly working and planning it. There is a lot of setup to this also - again a time sink. It will all click eventually and should get something out.
@veryacademy
@veryacademy 4 жыл бұрын
Best thing is to - and I really don't mind - keep reminding me!
@createlifejr
@createlifejr 4 жыл бұрын
@@veryacademy Sure! 👍
@smitpatel1358
@smitpatel1358 2 жыл бұрын
Wonderful!!!
@vickeypradhan9831
@vickeypradhan9831 3 жыл бұрын
Please include select_Related and prefetch related.
@veryacademy
@veryacademy 3 жыл бұрын
Thank you - have added to the list
@imanhpr
@imanhpr 3 жыл бұрын
thanks
@veryacademy
@veryacademy 3 жыл бұрын
Welcome
@popovanatoliy4736
@popovanatoliy4736 9 ай бұрын
in fact i always hear that gjango orm is django's weak side, comparing to sql alchemy.
@rangabharath4253
@rangabharath4253 4 жыл бұрын
awesome
@veryacademy
@veryacademy 4 жыл бұрын
Hey Ranga, thank you. Things are real slow at the moment - for that I apologise
@rangabharath4253
@rangabharath4253 4 жыл бұрын
@@veryacademy Congratulations on 2K subscribers. More to come :)
@veryacademy
@veryacademy 4 жыл бұрын
I do find it a bit crazy to be honest!
@ilyosbekkarshiboyev7134
@ilyosbekkarshiboyev7134 2 жыл бұрын
good luck
@veryacademy
@veryacademy 2 жыл бұрын
Thanks
@coltennabers634
@coltennabers634 2 жыл бұрын
its pronounced 'impee''dence mismatch
@veryacademy
@veryacademy 2 жыл бұрын
Yeah we had that discussion 😂
@coltennabers634
@coltennabers634 2 жыл бұрын
@@veryacademy thanks the playlist is really good
@choochtrain
@choochtrain 2 жыл бұрын
No offense, but you need to fix pronunciation on this one: "Impendance" -> "Impedance" Watching/listening I was confused, until I read the word to understand the point.
@veryacademy
@veryacademy 2 жыл бұрын
Sorry, I do that a lot, with trying to talk on the mic, thinking about what I am doing and typing I tend to make many mistakes like this. Won’t be too long until impendance day!
@choochtrain
@choochtrain 2 жыл бұрын
@@veryacademy LOL.
@choochtrain
@choochtrain 2 жыл бұрын
And thanks for the tutorial!
Django OR query
22:09
Very Academy
Рет қаралды 40 М.
Django Interview Questions (Junior Developer)
30:26
Dennis Ivy
Рет қаралды 125 М.
Mom had to stand up for the whole family!❤️😍😁
00:39
啊?就这么水灵灵的穿上了?
00:18
一航1
Рет қаралды 50 МЛН
Cool Parenting Gadget Against Mosquitos! 🦟👶
00:21
TheSoul Music Family
Рет қаралды 9 МЛН
Django ORM - Select and Output individual fields example
7:54
Very Academy
Рет қаралды 16 М.
FastAPI, Flask or Django - Which Should You Use?
9:49
Tech With Tim
Рет қаралды 90 М.
Django ORM Primer - Django QuerySet API and QuerySets
15:07
Very Academy
Рет қаралды 9 М.
Learn JSON in 10 Minutes
12:00
Web Dev Simplified
Рет қаралды 3,2 МЛН
Django ORM Deep Dive - Introduction to Databases & SQL
29:18
BugBytes
Рет қаралды 22 М.
What is ORM tool ?
9:59
Telusko
Рет қаралды 37 М.
Mom had to stand up for the whole family!❤️😍😁
00:39