Python SQLite Data Entry Form with Tkinter tutorial for beginners - Python GUI project

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ธ.ค. 2024

ความคิดเห็น • 73

  • @novicetech1
    @novicetech1 ปีที่แล้ว +3

    Absolutely outstanding tutorial! Thank you so much. I have been away from Python since 2018. I was only ever really interested in doing things with Tkinter and SQLite. When I finally got back to it this year (2023), I was shattered to discover that most of my knowledge was gone (that kinda comes with age). In an effort to review, I stumbled across your videos. I am so grateful to you. I now feel like I am back on my feet again with these technologies. Thank you, thank you, thank you.

  • @zettkusanagi6322
    @zettkusanagi6322 ปีที่แล้ว +2

    Thank you for this series. You go straight to the point and are very clear on instructions. I was able to understand Tkinter Layout thanks to your teaching. I am now checking other of your projects.

  • @kaduflutist
    @kaduflutist ปีที่แล้ว +1

    Thank you, Hala! You're an excellent instructor and coach. I'm so thankful and grateful for your time and expertise. Keep doing this great job!

  • @MohamedRoudani-q4p
    @MohamedRoudani-q4p ปีที่แล้ว

    Iam a newbee, I was looking for this, you nailed it Hala, looking forward to learn more from you, Shukran

  • @Foiliagegaming
    @Foiliagegaming ปีที่แล้ว +1

    Great video. I started following along and I was running into an error with the database where it was saying that a column did not exist. After staring at the code for to long trying to pin down what it was (assuming it was a typo) I called it quits for the day. Today I had the same error for a different column but was able to find the problem and it worked! Thank you!

  • @AbdolkarimMissaghian
    @AbdolkarimMissaghian ปีที่แล้ว

    Tack så mycket. Tydligt och mycket användbart. Lycka till.
    Thanks so much. Clear and very useful. Good luck.

  • @АлександрБорисенко-ш2в
    @АлександрБорисенко-ш2в ปีที่แล้ว +1

    Дай бог тебе здоровья
    God bless you for your video, blyad'

  • @zooeymoments8516
    @zooeymoments8516 2 ปีที่แล้ว +2

    Totally helpful. I learned a lot.
    Could be able to make new video how to retieve, edit and save back to database. It will mean a lot.

  • @rickyusuf8696
    @rickyusuf8696 10 หลายเดือนก่อน

    Jazaaki Allahu khairan for the wonderful video! It was a great refresher for me, and the way you explained it was very easy to follow along and make sense of it.

  • @Pattypatpat7122
    @Pattypatpat7122 11 หลายเดือนก่อน

    Amazing tutorial! I've learnt a lot in such a short period of time

  • @infernimus9563
    @infernimus9563 9 หลายเดือนก่อน

    11:30 why don't you use the executemany method to execute multiple queries?

  • @teamup7249
    @teamup7249 3 หลายเดือนก่อน

    Nice explanation....I loved the tutorial

  • @kingmenka2085
    @kingmenka2085 ปีที่แล้ว

    Hala
    You are amazing keep up the good work

  • @garymaya1767
    @garymaya1767 ปีที่แล้ว +1

    i love you! thank you for the information!

  • @Zak-l7e
    @Zak-l7e ปีที่แล้ว +2

    Brilliant video, just another way of coding:
    conn = sqlite3.connect('test1.db')
    c = conn.cursor()
    c.execute(
    "CREATE TABLE IF NOT EXISTS Student_Form (Title string, First Name TEXT, Surname TEXT, Age INTEGER, "
    "Nationality TEXT, Num_courses INTEGER, Num_semesters INTEGER)")
    c.execute("INSERT INTO Student_Form VALUES (?,?,?,?,?,?,?)",
    (title, first_name, last_name, age, nationality, num_courses, num_semesters))
    conn.commit()
    conn.close()

    • @pen1208
      @pen1208 9 วันที่ผ่านมา

      I was going to mention the method you spoke about as well. Thanks for adding it and sharing. Def seems a tad easier using the "c.execute" method IMO. However, when you use "conn.commit" you do not need to use "conn.close" as "conn.commit" takes away that requirement. It doesn't hurt, just not needed at that point.

  • @barackuse
    @barackuse ปีที่แล้ว +1

    Great Video, what if we wanted to retrieve data from the DB? Will there be video on that?

  • @julioCesar-qt6wc
    @julioCesar-qt6wc 3 หลายเดือนก่อน

    Great tutorial!!!

  • @Frazur
    @Frazur 2 ปีที่แล้ว +3

    This was super helpful. Even though I am using mySQL, the syntax is almost the same. This really help guide me in the right direction

    • @codefirstwithhala
      @codefirstwithhala  2 ปีที่แล้ว

      Glad it helped!

    • @gregoneill4391
      @gregoneill4391 ปีที่แล้ว

      @@codefirstwithhala is there a possibility of doing a PySimpleGUI version video??

  • @horsfallprosper5909
    @horsfallprosper5909 ปีที่แล้ว

    Which text colour editor are you using in your Vs code

  • @jimhess2590
    @jimhess2590 ปีที่แล้ว

    These videos were very, very helpful. I learned most of everything that I needed to move my project forward. Thanks!!!

  • @thecubanrelaxshitposting3733
    @thecubanrelaxshitposting3733 2 ปีที่แล้ว +1

    your videos are sooo great i love it

  • @ziarasuli3102
    @ziarasuli3102 9 หลายเดือนก่อน

    This Tutorial is really useful thanks alot.

  • @dmskarunaratne80
    @dmskarunaratne80 6 หลายเดือนก่อน

    at the end of conn.close() clear data entry form with clear data function??

  • @Gareth.W
    @Gareth.W 8 หลายเดือนก่อน

    Amazing tutorial. Thanks so much for creating this.

  • @fabiomatta1530
    @fabiomatta1530 10 หลายเดือนก่อน

    Thank you very much for your work. Love the way you teach.

  • @netreis1
    @netreis1 5 หลายเดือนก่อน

    Perdi algumas horas buscando uma solução para o meu código e neste video ficou esclarecido. Parabéns!

  • @jehoshaphatamihere9204
    @jehoshaphatamihere9204 ปีที่แล้ว

    Thanks very much madam, God bless you, You have made the code very simple to understand
    you are my python teacher from now onward

  • @AceLozabe-r7e
    @AceLozabe-r7e 29 วันที่ผ่านมา

    I'm so grateful, thank u so much!

  • @TyphonNeuron
    @TyphonNeuron 10 หลายเดือนก่อน

    Thanks for the tutorial so far. Can you continue with this data entry form and sqlite3 to show how to delete data from tables or how to export the table data into csv or json formats? Great videos, nice, celar explanations. Thanks again.

  • @Diogene-pl1lq
    @Diogene-pl1lq ปีที่แล้ว

    Thanks alot Hala, I am improving my skills along your advices and teaching!
    You are the data's fairy😉

  • @gregoneill4391
    @gregoneill4391 ปีที่แล้ว

    @Code First with Hala Hi I am trying to do this with a form for my project but it was with pysimplegui, I can get some success with this but I cant seem to get it to store the values in it. do you have a pysimplegui version of this?

  • @alfiartya23
    @alfiartya23 ปีที่แล้ว +2

    Hi, I would like to say thank you with this video. It really helpful for my project. But I want to ask, when I want to take example user age which is a number/integer. Should I use .get() or convert it into int() that user age entry? because every entry input will always return string value. Thank you 😄

    • @ryder4481
      @ryder4481 ปีที่แล้ว +3

      age = int(user_age_entry.get())

  • @weikang234
    @weikang234 ปีที่แล้ว

    Hello Hala, can i check what are the extensions you use in VS Code for your Python? Mine does not have the same color coding as yours

  • @2ncielkrommalzeme210
    @2ncielkrommalzeme210 ปีที่แล้ว

    Your Video with your teaching way is very good thanks İ ant to by a coffe in future.

  • @andresfelipebarrera5110
    @andresfelipebarrera5110 2 ปีที่แล้ว

    Very helpful, finally I could advance in my project, very grateful!!

  • @ParadoxCheats
    @ParadoxCheats ปีที่แล้ว

    amazing explanation of everything

  • @paulsingirok4600
    @paulsingirok4600 ปีที่แล้ว

    Thankyou. This was very helpful.

  • @sendog3csendog3c59
    @sendog3csendog3c59 3 หลายเดือนก่อน

    Hi Hala. Nice tutorial. I am an amateur in Python programing, I found your video a voila everything become understandable. Thank. In another topic I think am doing something similar wrong. I got the following message: sqlite3.OperationalError: near "EXIST": syntax error. Hope you can help me.

  • @vaidheeswaranbharathy87
    @vaidheeswaranbharathy87 ปีที่แล้ว

    Excellent

  • @blendid242
    @blendid242 ปีที่แล้ว

    Hi, How change theme color text for sql code plz. I always an orange text :(

  • @Rapha_Carpio
    @Rapha_Carpio 5 หลายเดือนก่อน

    can we put these kind of apps on a html?

  • @kapibara2440
    @kapibara2440 9 หลายเดือนก่อน

    Brilliant tutorial Hala ❤❤❤

  • @najibullahrezaee
    @najibullahrezaee 10 หลายเดือนก่อน

    very useful tutorials

  • @sumitkumargupta1720
    @sumitkumargupta1720 ปีที่แล้ว

    Very helpful video. Thanks a lot.

  • @2ncielkrommalzeme210
    @2ncielkrommalzeme210 ปีที่แล้ว

    how can we encrypt our file in sqlite.??????

  • @perlasaadeh3322
    @perlasaadeh3322 2 ปีที่แล้ว

    I'm passing because of you! THANK YOU!

  • @MohamedShams919
    @MohamedShams919 ปีที่แล้ว

    how can i save the data to excel sheet on sharepoint?

  • @deviskalo
    @deviskalo 2 ปีที่แล้ว

    Thanks so much! You really did great work here. I am glad and appreciate your work.

  • @its_code
    @its_code 2 ปีที่แล้ว +1

    😍😍🤩🤩 very helpful 🖤

    • @codefirstwithhala
      @codefirstwithhala  2 ปีที่แล้ว +1

      Glad you think so!

    • @its_code
      @its_code 2 ปีที่แล้ว

      @@codefirstwithhala 🤗🤩🤩😍

  • @vinzenzglenk860
    @vinzenzglenk860 ปีที่แล้ว

    Great video

  • @Sunilkumar-1564
    @Sunilkumar-1564 ปีที่แล้ว

    thank you so much 👍👍👍👍👍👍

  • @SuperKevinFS
    @SuperKevinFS ปีที่แล้ว

    HI thanks for a great course. I do not know how to connect sqlite (i use subline) and DB browser sqlite could you kindly point me in the right directions there is not much on this aspect of SQLITE thank u

  • @fazilelectronics3080
    @fazilelectronics3080 ปีที่แล้ว

    Thank you so much. I've learned a lot from your video

  • @eqsciencerayong2678
    @eqsciencerayong2678 ปีที่แล้ว

    thank u. for the best practices.

  • @autarroy
    @autarroy ปีที่แล้ว

    Hello Hala,
    First of all I would like to thank you for your kind explanation.
    I'm doing exactly what you did but I get a question mark when creating my .db Could you help me?

  • @steamersteamer1003
    @steamersteamer1003 ปีที่แล้ว

    I think you are awesome!

  • @Pythonmailservice
    @Pythonmailservice 6 หลายเดือนก่อน

    Thank you!

  • @diegovilchesloyola6656
    @diegovilchesloyola6656 ปีที่แล้ว

    How can you do an .exe?

  • @campfiregames4633
    @campfiregames4633 2 ปีที่แล้ว +1

    Thank you

  • @rzvn111
    @rzvn111 ปีที่แล้ว

    Thanks!

  • @sam_100ali_10
    @sam_100ali_10 ปีที่แล้ว

    Why don't you present your content in the language of your country instead of using the English language to publish the content, silly girl