Interface Python With MySQL
Interface Python With MySQL
WITH MYSQL
Connecting Python application with
Introductio
n
Every application required data to be stored for future
reference to manipulate data. Today every application
stores data in database for this purpose
For example, reservation system stores passengers
details for reserving the seats and later on for sending
some messages or for printing tickets etc.
In school student details are saved for many reasons
like attendance, fee collections, exams, report card etc.
Python allows us to connect all types of database like
Oracle, SQL Server, MySQL.
In our syllabus we have to understand how to connect
Python programs with MySQL
Pre-requisite to connect Python
with MySQL
Before we connect python program with any database
like MySQL we need to build a bridge to connect
Python and MySQL.
To build this bridge so that data can travel both
ways we need a connector called “mysql.connector”.
We can install “mysql.connector” by using
following methods:
🞑 At command prompt (Administrator login)
Type “pip install mysql.connector” and press enter
(internet connection in required)
This connector will work only for MySQL 5.7.3 or later
🞑 Or open
“https://dev.mysql.com/downloads/connector/python/”
IVaN
OnDdU
KdMoAwR VnElRoMa,AdG
P c(ToC
Sn,n
) KeVcOtEoFrA
KaNsU
P pR &er OS
Or
import mysql.connector as ms
is_connected() function
returns true if connection is
established otherwise false
🞑 mycursor = mycon.cursor()
TO EXECUTE QUERY
We use execute() function to send query to
connection
Cursor_name.execute(query)
For e.g.
mycursor.execute(„select * from emp‟)
VINOD KUMAR VERMA, PGT(CS), KV OEF
KANPUR &
Example -
Cursor
Output shows cursor is created and query is fired and stored, but no data is
coming. To fetch data we have to use functions like fetchall(), fetchone(),
fetchmany() are used
VINOD KUMAR VERMA, PGT(CS), KV OEF
KANPUR &
Fetching(extracting) data from
ResultSet
To extract data from cursor following functions are
used:
🞑 fetchall() : it will return all the record in the form of
tuple.
🞑 fetchone() : it return one record from the result set. i.e.
first time it will return first record, next time it will return
second record and so on. If no more record it will
return None
🞑 fetchmany(n) : it will return n number of records. It no
more record it will return an empty tuple.
🞑 rowcount : it will return number of rows retrieved from
the cursor so far.
VINOD KUMAR VERMA, PGT(CS), KV OEF
KANPUR &
Example –
fetchall()
data
AFTER PROGRAM
EXECUTION