Join my free course on the basics of Flask-SQLAlchemy: prettyprinted.com/flasksql
@leanwang3 жыл бұрын
Amazingly clear!! This is the only place that I can understand what Lazy Parameter is all about!!
@Sykkra5 жыл бұрын
so much clearer than the sqlalchemy documentation. thank you for this
@prettyprinted5 жыл бұрын
You're welcome!
@zahidadeel32233 жыл бұрын
I was looking for such a detailed tutorial. Thank you so much
@lator1941 Жыл бұрын
I watched this video few months ago and It was so difficult to understand but I'm happy I comprehend it now. Thank you, Anthony, for what you do for the Flask community.
3 жыл бұрын
Thank you so much for your videos! Hours of reading documentations, but you can answer my questions in a few minutes. 🥰
@kotesiam3 жыл бұрын
Hi! Thanks for the explanation, it really helped!
@81asimayub6 жыл бұрын
Thanks for the video, I was struggling to understand this before and now it is crystal clear.
@prettyprinted6 жыл бұрын
I'm glad I could help. Thanks for watching.
@nah02212 жыл бұрын
Just sending my thanks from 2022!
@lwm29856 жыл бұрын
You are heaven sent man!!!
@prettyprinted6 жыл бұрын
Thanks for watching!
@ayodele_e6 жыл бұрын
I am new to this but I understood it well. Thank you!
@prettyprinted6 жыл бұрын
Thanks for watching!
@anaghavarhade73753 жыл бұрын
Thank you so much
@adnankayace6 жыл бұрын
Great tutorial!
@prettyprinted6 жыл бұрын
Thanks for watching!
@gionasesteves75553 жыл бұрын
Hi, How can I show the names of pets of one person? Thanks a lot, your videos are of great help.
@RRits577 жыл бұрын
Great video
@prettyprinted7 жыл бұрын
Thanks!
@GuitaricalMaster3 жыл бұрын
Too good
@samu3505 жыл бұрын
Can't believe Arnold Schwarzenegger is teaching me awesome Flask tutorials!
@prettyprinted5 жыл бұрын
haha thanks for watching
@shraddhapatil40704 жыл бұрын
Can you please make a video on uselist parameter and share it across. Thanks in advance
@tasoulman7 жыл бұрын
Great video as always. keep up the good work. I have two questions 1) When using 'joined' lets say in your example and I want to print these fields in a template, do I still have to write a double for loop to access Pet's fields ? 2) I have DebugToolbar installed and I have noticed that too many queries are executed. I think that you showed how to we can fix this but I cannot find the video.
@prettyprinted7 жыл бұрын
Yeah, if you're starting from an arbitrary person and you want to get their pets, then you'll need two loops. For too many queries being executed, it depends completely on which queries are being executed and why. It's solved more by moving the queries around or removing them completely.
@tasoulman7 жыл бұрын
Ok, two loops it is. I mean that I see the same query executing as many times as the results
@tasoulman7 жыл бұрын
Any answer to my last question ?
@prettyprinted7 жыл бұрын
Hey, sorry for the delay. I answer comments in bulk every few days. Could you send me an example so I could take a look? anthony@prettyprinted.com
@tasoulman7 жыл бұрын
Any clue ? anyone ? I think you made a video about this but I can't find it
@mustaphab324 жыл бұрын
A question please : whene using lazy dynamic : an appenderquery isnt the same as a base query , why dont they make a pagination for AppenderQuery to use it as we can use it for BaseQuery , that will be good is there any way to use pagination on a relation when lazy=dyanmic ? thank you for your amazing help
@ReallyHighoncarbs6 жыл бұрын
Hey ! I see that you are using wsl , do you figure out a way to use venv setup in wsl on windows ? So that sublime text can work with that venv
@prettyprinted6 жыл бұрын
I haven't look into combining the two yet.
@ReallyHighoncarbs6 жыл бұрын
Pretty Printed if you find a solution do post a video about it
@cheetosthrash Жыл бұрын
hey man, first off, thank you for your video, it's very informative. but i wonder if you can help me with something, what if i wanted to fetch a pet, with it's owner, how can it be done?