TKinter Tutorial
About Lesson

In this lesson we are going to learn about TKinter Insert Data to MySQL, we want to lean how you can insert some data to the database, in the previous lesson we have learned that how you can connect your tkinter application to mysql database.

 

 

We have already created our database at name of tkdb, now we want to create a table with three fields id, name and password.

TKinter Mysql Database
TKinter Mysql Database

 

 

 

 

This is the complete code for this lesson.

 

 

 

basically we have create two labels with two text input field.

 

 

 

This is the button that we want to insert the data.

 

 

 

First we need to connect our application to the MySQL database, and after that we need to create the cursor object.

 

 

Now we need to execute our query.

 

 

 

After inserting the data we want to show a messagebox.

 

 

 

Run the complete code insert the data this will be the result.

TKinter Insert Data to MySQL
TKinter Insert Data to MySQL

 

 

 

 

Also if you check your wamp server, we have the inserted data.

TKinter MySQL Db
TKinter MySQL Db