Extract Data from Database using MySQL-Connector and XAMPP in Python
Last Updated :
01 Nov, 2020
Prerequisites: MySQL-Connector, XAMPP Installation
A connector is employed when we have to use MySQL with other programming languages. The work of mysql-connector is to provide access to MySQL Driver to the required language. Thus, it generates a connection between the programming language and the MySQL Server.
Requirements
- XAMPP: Database / Server to store and display data.
- MySQL-Connector module: For connecting the database with the python file. Use the below command to install this module.
pip install mysql-connector
- Wheel module: A command line tool for working with wheel files. Use the below command to install this module.
pip install wheel
Step-by-step Approach:
Procedure to create a table in the database:

- Create a table with in GEEK database and click on Go.

- Define column names and click on save.


- Insert data in your database by clicking on SQL tab then select INSERT.

- The data in your table is:

- Now you can perform operation IE display data in your web page using python
Procedure for writing Python program:
- Import mysql connector module in your Python code.
import mysql.connector
- Create connection object.
conn_object=mysql.connector.connect(hostname,username,password,database_name)
Here, you will need to pass server name, username, password, and database name)
cur_object=conn_object,cursor()
- Perform queries on database.
query=DDL/DML etc
cur_obj=execute(query)
cur_obj.close()
conn_obj.close()
Below is the complete Python program based on the above approach:
Python3
# import required modules
import mysql.connector
# create connection object
con = mysql.connector.connect(
host="localhost", user="root",
password="", database="GEEK")
# create cursor object
cursor = con.cursor()
# assign data query
query1 = "desc geeksdemo"
# executing cursor
cursor.execute(query1)
# display all records
table = cursor.fetchall()
# describe table
print('\n Table Description:')
for attr in table:
print(attr)
# assign data query
query2 = "select * from geeksdemo"
# executing cursor
cursor.execute(query2)
# display all records
table = cursor.fetchall()
# fetch all columns
print('\n Table Data:')
for row in table:
print(row[0], end=" ")
print(row[1], end=" ")
print(row[2], end=" ")
print(row[3], end="\n")
# closing cursor connection
cursor.close()
# closing connection object
con.close()
Output:
Note: XAMPP Apache and MySQL should be kept on during the whole process.Â
Similar Reads
Connect MySQL database using MySQL-Connector Python While working with Python we need to work with databases, they may be of different types like MySQL, SQLite, NoSQL, etc. In this article, we will be looking forward to how to connect MySQL databases using MySQL Connector/Python.MySQL Connector module of Python is used to connect MySQL databases with
2 min read
How to store XML data into a MySQL database using Python? In this article, we are going to store XML data into the MySQL database using python through XAMPP server. So we are taking student XML data and storing the values into the database. RequirementsXAMPP server: It is a cross-platform web server used to develop and test programs on a local server. It i
3 min read
How to visualize data from MySQL database by using Matplotlib in Python ? Prerequisites: Matplotlib in Python, MySQL While working with Python we need to work with databases, they may be of different types like MySQL, SQLite, NoSQL, etc. In this article, we will be looking forward to how to connect MySQL databases using MySQL Connector/Python. MySQL Connector module of Py
5 min read
Create Database in MariaDB using PyMySQL in Python MariaDB is an open source Database Management System and its predecessor to MySQL. The pymysql client can be used to interact with MariaDB similar to that of MySQL using Python. In this article we will look into the process of creating a database using pymysql. To create a database use the below syn
2 min read
Create MySQL Database Login Page in Python using Tkinter Prerequisites: Python GUI â tkinter, Python MySQL â Select QueryTkinter is one of the Python libraries which contains many functions for the development of graphic user interface pages and windows. Login pages are important for the development of any kind of mobile or web application. This page is m
2 min read