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

  Рет қаралды 62,265

Code First with Hala

Code First with Hala

Күн бұрын

Пікірлер: 71
@novicetech1
@novicetech1 11 ай бұрын
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 Жыл бұрын
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.
@MohamedRoudani-q4p
@MohamedRoudani-q4p Жыл бұрын
Iam a newbee, I was looking for this, you nailed it Hala, looking forward to learn more from you, Shukran
@kaduflutist
@kaduflutist Жыл бұрын
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!
@sendog3csendog3c59
@sendog3csendog3c59 Ай бұрын
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.
@rickyusuf8696
@rickyusuf8696 9 ай бұрын
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.
@barackuse
@barackuse Жыл бұрын
Great Video, what if we wanted to retrieve data from the DB? Will there be video on that?
@teamup7249
@teamup7249 2 ай бұрын
Nice explanation....I loved the tutorial
@Foiliagegaming
@Foiliagegaming Жыл бұрын
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!
@Pattypatpat7122
@Pattypatpat7122 9 ай бұрын
Amazing tutorial! I've learnt a lot in such a short period of time
@zooeymoments8516
@zooeymoments8516 Жыл бұрын
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.
@alfiartya23
@alfiartya23 Жыл бұрын
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 Жыл бұрын
age = int(user_age_entry.get())
@TyphonNeuron
@TyphonNeuron 8 ай бұрын
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.
@Zak-l7e
@Zak-l7e Жыл бұрын
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()
@АлександрБорисенко-ш2в
@АлександрБорисенко-ш2в Жыл бұрын
Дай бог тебе здоровья God bless you for your video, blyad'
@Diogene-pl1lq
@Diogene-pl1lq Жыл бұрын
Thanks alot Hala, I am improving my skills along your advices and teaching! You are the data's fairy😉
@AbdolkarimMissaghian
@AbdolkarimMissaghian Жыл бұрын
Tack så mycket. Tydligt och mycket användbart. Lycka till. Thanks so much. Clear and very useful. Good luck.
@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
@Frazur
@Frazur 2 жыл бұрын
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??
@netreis1
@netreis1 3 ай бұрын
Perdi algumas horas buscando uma solução para o meu código e neste video ficou esclarecido. Parabéns!
@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
@julioCesar-qt6wc
@julioCesar-qt6wc Ай бұрын
Great tutorial!!!
@kingmenka2085
@kingmenka2085 10 ай бұрын
Hala You are amazing keep up the good work
@horsfallprosper5909
@horsfallprosper5909 11 ай бұрын
Which text colour editor are you using in your Vs code
@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
@ziarasuli3102
@ziarasuli3102 7 ай бұрын
This Tutorial is really useful thanks alot.
@jimhess2590
@jimhess2590 Жыл бұрын
These videos were very, very helpful. I learned most of everything that I needed to move my project forward. Thanks!!!
@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?
@fabiomatta1530
@fabiomatta1530 8 ай бұрын
Thank you very much for your work. Love the way you teach.
@Gareth.W
@Gareth.W 7 ай бұрын
Amazing tutorial. Thanks so much for creating this.
@garymaya1767
@garymaya1767 Жыл бұрын
i love you! thank you for the information!
@2ncielkrommalzeme210
@2ncielkrommalzeme210 Жыл бұрын
Your Video with your teaching way is very good thanks İ ant to by a coffe in future.
@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?
@vaidheeswaranbharathy87
@vaidheeswaranbharathy87 Жыл бұрын
Excellent
@paulsingirok4600
@paulsingirok4600 10 ай бұрын
Thankyou. This was very helpful.
@infernimus9563
@infernimus9563 8 ай бұрын
11:30 why don't you use the executemany method to execute multiple queries?
@najibullahrezaee
@najibullahrezaee 8 ай бұрын
very useful tutorials
@andresfelipebarrera5110
@andresfelipebarrera5110 2 жыл бұрын
Very helpful, finally I could advance in my project, very grateful!!
@perlasaadeh3322
@perlasaadeh3322 2 жыл бұрын
I'm passing because of you! THANK YOU!
@codefirstwithhala
@codefirstwithhala 2 жыл бұрын
Thank you for your support!
@Sunilkumar-1564
@Sunilkumar-1564 10 ай бұрын
thank you so much 👍👍👍👍👍👍
@vinzenzglenk860
@vinzenzglenk860 Жыл бұрын
Great video
@dmskarunaratne80
@dmskarunaratne80 5 ай бұрын
at the end of conn.close() clear data entry form with clear data function??
@thecubanrelaxshitposting3733
@thecubanrelaxshitposting3733 2 жыл бұрын
your videos are sooo great i love it
@codefirstwithhala
@codefirstwithhala 2 жыл бұрын
Thank you so much!
@Pythonmailservice
@Pythonmailservice 4 ай бұрын
Thank you!
@sumitkumargupta1720
@sumitkumargupta1720 Жыл бұрын
Very helpful video. Thanks a lot.
@kapibara2440
@kapibara2440 7 ай бұрын
Brilliant tutorial Hala ❤❤❤
@Rapha_Carpio
@Rapha_Carpio 3 ай бұрын
can we put these kind of apps on a html?
@blendid242
@blendid242 Жыл бұрын
Hi, How change theme color text for sql code plz. I always an orange text :(
@fazilelectronics3080
@fazilelectronics3080 Жыл бұрын
Thank you so much. I've learned a lot from your video
@ParadoxCheats
@ParadoxCheats Жыл бұрын
amazing explanation of everything
@eqsciencerayong2678
@eqsciencerayong2678 Жыл бұрын
thank u. for the best practices.
@its_code
@its_code 2 жыл бұрын
😍😍🤩🤩 very helpful 🖤
@codefirstwithhala
@codefirstwithhala 2 жыл бұрын
Glad you think so!
@its_code
@its_code 2 жыл бұрын
@@codefirstwithhala 🤗🤩🤩😍
@steamersteamer1003
@steamersteamer1003 Жыл бұрын
I think you are awesome!
@2ncielkrommalzeme210
@2ncielkrommalzeme210 Жыл бұрын
how can we encrypt our file in sqlite.??????
@MohamedShams919
@MohamedShams919 Жыл бұрын
how can i save the data to excel sheet on sharepoint?
@rzvn111
@rzvn111 Жыл бұрын
Thanks!
@campfiregames4633
@campfiregames4633 2 жыл бұрын
Thank you
@codefirstwithhala
@codefirstwithhala 2 жыл бұрын
Welcome!
@diegovilchesloyola6656
@diegovilchesloyola6656 Жыл бұрын
How can you do an .exe?
@المثنىزيادطارق
@المثنىزيادطارق 4 ай бұрын
Using the pyinstaller library
@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
@deviskalo
@deviskalo 2 жыл бұрын
Thanks so much! You really did great work here. I am glad and appreciate your work.
Convert Tkinter Python App to Executable (.Exe) File [pyinstaller]
9:11
Code First with Hala
Рет қаралды 156 М.
2 MAGIC SECRETS @denismagicshow @roman_magic
00:32
MasomkaMagic
Рет қаралды 28 МЛН
Fake watermelon by Secret Vlog
00:16
Secret Vlog
Рет қаралды 38 МЛН
Smart Sigma Kid #funny #sigma
00:14
CRAZY GREAPA
Рет қаралды 99 МЛН
Python Tkinter SQLite Example
25:20
Very Academy
Рет қаралды 19 М.
SQLite Backend for Beginners - Create Quick Databases with Python and SQL
13:32
Convert GUI App to Real Program -  Python to exe to setup wizard
23:27
Python Simplified
Рет қаралды 540 М.
Use a Drag & Drop Editor to Make Tkinter Python GUI Applications!
11:16
Create Stunning Python GUIs in 10 Minutes With Drag & Drop
11:38
Coding Is Fun
Рет қаралды 86 М.
you need to learn SQL RIGHT NOW!! (SQL Tutorial for Beginners)
24:25
NetworkChuck
Рет қаралды 1,6 МЛН
How to store data with Python and SQLite3
9:15
John Watson Rooney
Рет қаралды 45 М.
2 MAGIC SECRETS @denismagicshow @roman_magic
00:32
MasomkaMagic
Рет қаралды 28 МЛН