3. Inventory Management System with Python Tkinter & MySQL: Database Integration & CRUD Operations

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ม.ค. 2025

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

  • @michreano
    @michreano 11 วันที่ผ่านมา

    really, educative. learning alot from this.🤟

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

    It is very help full tutorial thank you very much from Ethiopia

  • @HenrySuikaM
    @HenrySuikaM 2 หลายเดือนก่อน

    You're a wonderful teacher and I have learnt a lot from you, a big thank you. I was able to follow through while implementing all the steps using MS SQL Server Express.

  • @soumahorosoualiho5825
    @soumahorosoualiho5825 4 หลายเดือนก่อน

    Great. This time, it is dosed. Many handlings. Every Day, we learn a little more. Thanks so much

  • @AbdulaiMoro-td3xm
    @AbdulaiMoro-td3xm 4 หลายเดือนก่อน

    Good Teacher
    I really like the way you teach

  • @freesoftwares6042
    @freesoftwares6042 4 หลายเดือนก่อน

    just finished he second part , time to start this one , thanks for sharing

    • @codinglifestyle4u
      @codinglifestyle4u  4 หลายเดือนก่อน +1

      Welcome.. hope you are learning

    • @freesoftwares6042
      @freesoftwares6042 4 หลายเดือนก่อน

      @@codinglifestyle4u yessir i am pausing , trying on my own , and then correcting with the video

    • @codinglifestyle4u
      @codinglifestyle4u  4 หลายเดือนก่อน

      Great all the best.

  • @The.Ride.Report
    @The.Ride.Report 4 หลายเดือนก่อน

    I have learn alot from this video Thanks

  • @MaribelBarte-q5e
    @MaribelBarte-q5e หลายเดือนก่อน

    Thanks you so much Sir!! your sos sososso very helpfull!!!!

  • @JaydeepSolanki-uh5vj
    @JaydeepSolanki-uh5vj หลายเดือนก่อน +1

    2:00:22 succefully done ❤

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

    Hello. I have noticed a problem when data is tracing back from db to interface. leading zeros have been removed at the interface by our code even though db still shows data with leading zero which is stored as VARCHAR. as an example: password "01234" stored in db is showed as "1234" at password entry field. thank you.

  • @Useme-e9s
    @Useme-e9s 3 หลายเดือนก่อน

    hi sir can you please tell about mysql installation and setup ive used mssql and workbench only

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

      Check MySQL installation and uninstallation videos in my channel

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

    Hi Coach. Thank you for all. I noticed that when we select a row to be updated, only one item can be updated. It's not possible to update many items at the same time. This is due to the fact that the row is selected. Can you see this issue?

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

      This is possible in case the row is not selected. How to resolve the problem

  • @AbdulaiMoro-td3xm
    @AbdulaiMoro-td3xm 4 หลายเดือนก่อน +1

    Mr Faizan you did not explain why you did not add 'EDUCATION ' to the database but it appears in the mysql database

    • @codinglifestyle4u
      @codinglifestyle4u  4 หลายเดือนก่อน +1

      I included the education as well, but since it's positioned on the right-hand side, so its not visible. However, you can add it to your database table.

    • @AbdulaiMoro-td3xm
      @AbdulaiMoro-td3xm 3 หลายเดือนก่อน

      @@codinglifestyle4u yes it works 👍

    • @faizan_khan660
      @faizan_khan660 3 หลายเดือนก่อน +1

      It’s there on the right side, but you might not see it! 😄
      If you missed it and already created the table without the education column, just add this code after the CREATE TABLE line:
      cursor.execute('ALTER TABLE employee_data
      ADD COLUMN education VARCHAR(100) AFTER employment_type')

  • @autarroy
    @autarroy 4 หลายเดือนก่อน

    Brother, can i use sqlite 3

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

    brother, if i am clicking on the command to see the database is not showing me the employee_data. What is going wrong.
    How i can use mysql or how i can download it

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

      Send me the error pic on instagram coding_lifestyle_4u

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

    Sir cannot import name employee_form from employees

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

      You have to write like this -
      import employee_form from employees

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

    hi please i cant insert into table i dont know why :
    File "c:\Users\wiwy\Desktop\mon 2eme projet\employer.py", line 46, in valide_employer
    cursor.execute('INSERT INTO employers VALUES(%s)',(empid))
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    File "C:\Users\wiwy\AppData\Local\Programs\Python\Python313\Lib\site-packages\pymysql\cursors.py", line 153, in execute
    result = self._query(query)
    File "C:\Users\wiwy\AppData\Local\Programs\Python\Python313\Lib\site-packages\pymysql\cursors.py", line 322, in _query
    conn.query(q)
    ~~~~~~~~~~^^^
    File "C:\Users\wiwy\AppData\Local\Programs\Python\Python313\Lib\site-packages\pymysql\connections.py", line 563, in query
    self._affected_rows = self._read_query_result(unbuffered=unbuffered)
    ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^
    File "C:\Users\wiwy\AppData\Local\Programs\Python\Python313\Lib\site-packages\pymysql\connections.py", line 825, in _read_query_result
    result.read()
    ~~~~~~~~~~~^^
    File "C:\Users\wiwy\AppData\Local\Programs\Python\Python313\Lib\site-packages\pymysql\connections.py", line 1199, in read
    first_packet = self.connection._read_packet()
    File "C:\Users\wiwy\AppData\Local\Programs\Python\Python313\Lib\site-packages\pymysql\connections.py", line 775, in _read_packet
    packet.raise_for_error()
    ~~~~~~~~~~~~~~~~~~~~~~^^
    File "C:\Users\wiwy\AppData\Local\Programs\Python\Python313\Lib\site-packages\pymysql\protocol.py", line 219, in raise_for_error
    err.raise_mysql_exception(self._data)
    ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
    File "C:\Users\wiwy\AppData\Local\Programs\Python\Python313\Lib\site-packages\pymysql\err.py", line 150, in raise_mysql_exception
    raise errorclass(errno, errval)
    pymysql.err.OperationalError: (1136, "Column count doesn't match value count at row 1")
    PS C:\Users\wiwy\Desktop\mon 2eme projet>

  • @DragonDread2009
    @DragonDread2009 4 หลายเดือนก่อน

    Now, how to do own tkinter in python

    • @codinglifestyle4u
      @codinglifestyle4u  4 หลายเดือนก่อน

      I didn't get you please elaborate?

    • @DragonDread2009
      @DragonDread2009 4 หลายเดือนก่อน

      @@codinglifestyle4u I might Said it wrong, I mean't own graphical interface 👍

    • @codinglifestyle4u
      @codinglifestyle4u  4 หลายเดือนก่อน

      You will be able to create your own gui after learning one or two projects

    • @DragonDread2009
      @DragonDread2009 4 หลายเดือนก่อน

      @@codinglifestyle4u thank you! 🙂

  • @7ama-3umer
    @7ama-3umer 14 วันที่ผ่านมา

    Thank you brother i learn from you more than my fucking colege😂😂

  • @freesoftwares6042
    @freesoftwares6042 4 หลายเดือนก่อน

    i think i found a bug ,anyways , if you click on the employee button WHILE you are in that page already , the back button wont work anymore

    • @freesoftwares6042
      @freesoftwares6042 4 หลายเดือนก่อน

      i might add , a discord community or something similar for viewers , we can help eachothers and such , i bet it will be very active

    • @codinglifestyle4u
      @codinglifestyle4u  4 หลายเดือนก่อน

      Yes I am aware of that issue I will fix it in upcoming tutorials

    • @freesoftwares6042
      @freesoftwares6042 4 หลายเดือนก่อน

      @@codinglifestyle4u update , i just finished this part , to the next one

    • @codinglifestyle4u
      @codinglifestyle4u  4 หลายเดือนก่อน +1

      Great 👍

  • @ahmedjawad4986
    @ahmedjawad4986 2 หลายเดือนก่อน

    cursor.execute('CREATE DATABASE IF NOT EXISTS inventory_system')
    ^^^^^^
    NameError: name 'cursor' is not defined

    • @codinglifestyle4u
      @codinglifestyle4u  2 หลายเดือนก่อน

      Please recheck the code you must be making mistake

    • @ahmedjawad4986
      @ahmedjawad4986 2 หลายเดือนก่อน

      @@codinglifestyle4u ok sir. thank you. i will recheck