Pull Data From The Database - Django Databases #3

Поделиться
HTML-код
  • Опубликовано: 22 авг 2024
  • In this video I'll show you how to pull data from the database and output it onto a webpage with Python and Django.
    In the last video we created our database class and pushed our migration into the database. We also added some data to the database thru the Django admin area. In this video I'll show you how incredibly easy it is to pull that data back out of the database and output it onto the screen.

Комментарии • 60

  • @Codemycom
    @Codemycom  4 года назад +2

    ▶️ Watch Entire Django Database Playlist ✅ Subscribe To My RUclips Channel:
    bit.ly/2uiNq86 bit.ly/2IGzvOR
    ▶️ See More At: ✅ Join My Facebook Group:
    Codemy.com bit.ly/2GFmOBz
    ▶️ Learn to Code at Codemy.com
    Take $30 off with coupon code: youtube1

  • @SchoonDawg98
    @SchoonDawg98 4 года назад +4

    John, you are a godsend. Thank you so much for this series, for someone like me who knows Python but has no experience with databases this is just incredibly helpful. Most tutorials just skim right past the topics you cover here leaving you with the knowledge of “copy this code and paste it into your file.” Thanks again,
    -Dylan

    • @Codemycom
      @Codemycom  4 года назад

      Glad you enjoyed it!

  • @spiralgaming8940
    @spiralgaming8940 3 года назад +4

    Sir , you can't even imagine how much this video helps me . I was just about to give up in django because of these database's stuff .
    Thank you so much ....×100 🤗

  • @upuzitu8332
    @upuzitu8332 4 года назад

    So simple and straight forward. I'm a newbie and 99% of the videos I've gone through confused me a lot. My problem has now been solved ... Lemme also subscribe.

    • @Codemycom
      @Codemycom  4 года назад

      Awesome! Glad they were helpful!

  • @adityajain401
    @adityajain401 2 года назад

    thank you for making this videos, this has really helped me in creating my final year project

  • @fire23hummer
    @fire23hummer Год назад

    Thank you Mr. Elder

  • @utku_yucel
    @utku_yucel 4 года назад

    Thank you John, you are the best!

    • @Codemycom
      @Codemycom  4 года назад

      Thanks for watching!

  • @PatrickMiles1
    @PatrickMiles1 4 года назад

    Very concise and valuable, thank you!

    • @Codemycom
      @Codemycom  4 года назад

      Glad you enjoyed it!

  • @greetingsgentlemen.8179
    @greetingsgentlemen.8179 3 года назад

    Thank you so much! This is so amazing. I was about to give up and switch to a different framework. Will be subbing and following channel!

    • @Codemycom
      @Codemycom  3 года назад

      Glad it was helpful!

    • @greetingsgentlemen.8179
      @greetingsgentlemen.8179 3 года назад

      @@Codemycom Is there a video on having a detailed view? For example, i have a lot of names and i want to open them up using id's. Like this /id

  • @yunikashrestha5345
    @yunikashrestha5345 Год назад

    thank you codemy uncle

  • @fransubaru
    @fransubaru 3 года назад

    Amazing videos!!!

  • @faridhabibli625
    @faridhabibli625 3 года назад

    Thank you very much!

  • @adigunolamide3230
    @adigunolamide3230 4 года назад

    Always following sir🖤

  • @sanjeevprasad1705
    @sanjeevprasad1705 4 года назад

    Thnk you so much

  • @dritonsahiti2401
    @dritonsahiti2401 4 года назад

    Thank you sir

    • @Codemycom
      @Codemycom  4 года назад

      You're very welcome!

  • @vardhanshah8843
    @vardhanshah8843 4 года назад

    Nice explanation .I didn't pass object parameter to html file but I know my mistake now

  • @yasirahmed4197
    @yasirahmed4197 2 года назад

    Learn smartly, learn from Codemy! :)

  • @srinivasulug821
    @srinivasulug821 11 месяцев назад

    Hi How we can add db_collation="case_insensitive" to username filed and what are the steps?

  • @GamesandTechs
    @GamesandTechs 2 года назад

    I need help can we show john data to john only when john signs in and similarly mary data if mary signs so that they wont see other data

    • @Codemycom
      @Codemycom  2 года назад

      Sure, that's pretty normal

  • @divyamshugupta7094
    @divyamshugupta7094 3 года назад

    Greetings John,
    Can you help us with how to use multiple databases and CRUD with 3-4 different databases even cloud PAAS DBs. It would be helpful.
    Thanks

  • @yeeroj
    @yeeroj 4 года назад

    50 Likes and no dislike that's awesome

  • @GuilhermeFerreira-xx4fg
    @GuilhermeFerreira-xx4fg 2 года назад

    I followed the video and used it in my project, but in the end it did not work.. the screen was all blank.. Do you know what could be the problem?
    ------------------------------------------
    My model:
    from django.db import models
    class Posicao(models.Model):
    nome = models.CharField('Posição', max_length=5)
    descricao = models.TextField('Descrição', max_length=1000)
    secao = models.ForeignKey(Secao, blank=False, null=False, on_delete=models.CASCADE)
    capitulo = models.ForeignKey(Capitulo, blank=False, null=False, on_delete=models.CASCADE)
    def __str__(self):
    return self.nome
    -------------------------------------------
    My view:
    from django.shortcuts import render
    from .models import Posicao
    def consultar_123(request):
    consultar_abc = Posicao.objects.all()
    return render(request, 'consulta_ncm.html', {'all' : consultar_abc})
    -----------------------------------
    My urls:
    from django.urls import path
    from django.views.generic import TemplateView
    urlpatterns = [
    path('consulta_ncm', TemplateView.as_view(template_name='consulta_ncm.html')),
    ------------------------------------
    My html (consulta_ncm.html):
    Hello World
    {{all}}
    -----------------------------------
    The outcome:
    Hello World

    • @Codemycom
      @Codemycom  2 года назад +1

      You didn't follow the video correctly. Try watching the video again and give it all another try

  • @mohamedelmabrouki512
    @mohamedelmabrouki512 3 года назад

    Hello jhon.is there a way to extract from a table to an other on in the same db for example if i want to to move it from table to on other one base on some conditions

  • @leh351student3
    @leh351student3 4 года назад

    Can you make a video for model choice values for a drop down list please

    • @Codemycom
      @Codemycom  4 года назад

      Not sure what you mean

    • @leh351student3
      @leh351student3 4 года назад

      @@Codemycom sorry, that was vague. I meant a query set for users to select options but the voices will be coming from the data base. Also Thank you very much for your video- you are the best my guy. New York loves you Brother

  • @palanikumar8023
    @palanikumar8023 4 года назад

    I want to pull the records of database and store it in an Excel sheet...is this possible sir??

  • @stanleyagwu4818
    @stanleyagwu4818 4 года назад

    Hello John, Please how do I add an additional column to an existing database thru models.py? Thank you

    • @Codemycom
      @Codemycom  4 года назад +1

      I have a django blog playlist on this channel that will show you that. Essentially just add the new thing to your models.py file, then make a migration and push the migration as normal.

    • @stanleyagwu4818
      @stanleyagwu4818 4 года назад

      @@Codemycom Thanks so much sir.

  • @veradavampire4861
    @veradavampire4861 Год назад

    the data is not printed on the page

    • @Codemycom
      @Codemycom  Год назад

      What did you do differently from the video?

  • @SchoonDawg98
    @SchoonDawg98 4 года назад

    John, you are a godsend. Thank you so much for this series, for someone like me who knows Python but has no experience with databases this is just incredibly helpful. Most tutorials just skim right past the topics you cover here leaving you with the knowledge of “copy this code and paste it into your file.” Thanks again,
    -Dylan

    • @Codemycom
      @Codemycom  4 года назад

      Glad you enjoyed it!