SlideShare a Scribd company logo
2
Most read
3
Most read
7
Most read
http://www.tutorialspoint.com/python/python_database_access.htm Copyright © tutorialspoint.com
PYTHON MYSQL DATABASE ACCESS
The Pythonstandard for database interfaces is the PythonDB-API. Most Pythondatabase interfaces adhere to
this standard.
Youcanchoose the right database for your application. PythonDatabase API supports a wide range of database
servers:
GadFly
mSQL
MySQL
PostgreSQL
Microsoft SQL Server 2000
Informix
Interbase
Oracle
Sybase
Here is the list of available Pythondatabase interfaces: PythonDatabase Interfaces and APIs .Youmust
download a separate DB API module for eachdatabase youneed to access. For example, if youneed to access
anOracle database as wellas a MySQL database, youmust download boththe Oracle and the MySQL database
modules.
The DB API provides a minimalstandard for working withdatabases using Pythonstructures and syntax
wherever possible. This API includes the following:
Importing the API module.
Acquiring a connectionwiththe database.
Issuing SQL statements and stored procedures.
Closing the connection
We would learnallthe concepts using MySQL, so let's talk about MySQLdb module only.
What is MySQLdb?
MySQLdb is aninterface for connecting to a MySQL database server fromPython. It implements the Python
Database API v2.0 and is built ontop of the MySQL C API.
How do I install the MySQLdb?
Before proceeding, youmake sure youhave MySQLdb installed onyour machine. Just type the following inyour
Pythonscript and execute it:
#!/usr/bin/python
import MySQLdb
If it produces the following result, thenit means MySQLdb module is not installed:
Traceback (most recent call last):
File "test.py", line 3, in <module>
import MySQLdb
ImportError: No module named MySQLdb
To installMySQLdb module, download it fromMySQLdb Download page and proceed as follows:
$ gunzip MySQL-python-1.2.2.tar.gz
$ tar -xvf MySQL-python-1.2.2.tar
$ cd MySQL-python-1.2.2
$ python setup.py build
$ python setup.py install
Note: Make sure youhave root privilege to installabove module.
Database Connection:
Before connecting to a MySQL database, make sure of the followings:
Youhave created a database TESTDB.
Youhave created a table EMPLOYEE inTESTDB.
This table is having fields FIRST_NAME, LAST_NAME, AGE, SEX and INCOME.
User ID "testuser" and password "test123" are set to access TESTDB.
Pythonmodule MySQLdb is installed properly onyour machine.
Youhave gone throughMySQL tutorialto understand MySQL Basics.
Example:
Following is the example of connecting withMySQL database "TESTDB"
#!/usr/bin/python
import MySQLdb
# Open database connection
db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )
# prepare a cursor object using cursor() method
cursor = db.cursor()
# execute SQL query using execute() method.
cursor.execute("SELECT VERSION()")
# Fetch a single row using fetchone() method.
data = cursor.fetchone()
print "Database version : %s " % data
# disconnect from server
db.close()
While running this script, it is producing the following result inmy Linux machine.
Database version : 5.0.45
If a connectionis established withthe datasource, thena ConnectionObject is returned and saved into db for
further use, otherwise db is set to None. Next, db object is used to create a cursor object, whichinturnis
used to execute SQL queries. Finally, before coming out, it ensures that database connectionis closed and
resources are released.
Creating Database Table:
Once a database connectionis established, we are ready to create tables or records into the database tables
using execute method of the created cursor.
Example:
First, let's create Database table EMPLOYEE:
#!/usr/bin/python
import MySQLdb
# Open database connection
db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )
# prepare a cursor object using cursor() method
cursor = db.cursor()
# Drop table if it already exist using execute() method.
cursor.execute("DROP TABLE IF EXISTS EMPLOYEE")
# Create table as per requirement
sql = """CREATE TABLE EMPLOYEE (
FIRST_NAME CHAR(20) NOT NULL,
LAST_NAME CHAR(20),
AGE INT,
SEX CHAR(1),
INCOME FLOAT )"""
cursor.execute(sql)
# disconnect from server
db.close()
INSERT Operation:
INSERT operationis required whenyouwant to create your records into a database table.
Example:
Following is the example, whichexecutes SQL INSERT statement to create a record into EMPLOYEE table:
#!/usr/bin/python
import MySQLdb
# Open database connection
db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )
# prepare a cursor object using cursor() method
cursor = db.cursor()
# Prepare SQL query to INSERT a record into the database.
sql = """INSERT INTO EMPLOYEE(FIRST_NAME,
LAST_NAME, AGE, SEX, INCOME)
VALUES ('Mac', 'Mohan', 20, 'M', 2000)"""
try:
# Execute the SQL command
cursor.execute(sql)
# Commit your changes in the database
db.commit()
except:
# Rollback in case there is any error
db.rollback()
# disconnect from server
db.close()
Above example canbe writtenas follows to create SQL queries dynamically:
#!/usr/bin/python
import MySQLdb
# Open database connection
db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )
# prepare a cursor object using cursor() method
cursor = db.cursor()
# Prepare SQL query to INSERT a record into the database.
sql = "INSERT INTO EMPLOYEE(FIRST_NAME, 
LAST_NAME, AGE, SEX, INCOME) 
VALUES ('%s', '%s', '%d', '%c', '%d' )" % 
('Mac', 'Mohan', 20, 'M', 2000)
try:
# Execute the SQL command
cursor.execute(sql)
# Commit your changes in the database
db.commit()
except:
# Rollback in case there is any error
db.rollback()
# disconnect from server
db.close()
Example:
Following code segment is another formof executionwhere youcanpass parameters directly:
..................................
user_id = "test123"
password = "password"
con.execute('insert into Login values("%s", "%s")' % 
(user_id, password))
..................................
READ Operation:
READ Operationonany databasse means to fetchsome usefulinformationfromthe database.
Once our database connectionis established, we are ready to make a query into this database. We canuse either
fetchone() method to fetchsingle record or fetchall() method to fetechmultiple values froma database table.
fetchone(): This method fetches the next row of a query result set. A result set is anobject that is
returned whena cursor object is used to query a table.
fetchall(): This method fetches allthe rows ina result set. If some rows have already beenextracted
fromthe result set, the fetchall() method retrieves the remaining rows fromthe result set.
rowcount: This is a read-only attribute and returns the number of rows that were affected by an
execute() method.
Example:
Following is the procedure to query allthe records fromEMPLOYEE table having salary more than1000:
#!/usr/bin/python
import MySQLdb
# Open database connection
db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )
# prepare a cursor object using cursor() method
cursor = db.cursor()
# Prepare SQL query to INSERT a record into the database.
sql = "SELECT * FROM EMPLOYEE 
WHERE INCOME > '%d'" % (1000)
try:
# Execute the SQL command
cursor.execute(sql)
# Fetch all the rows in a list of lists.
results = cursor.fetchall()
for row in results:
fname = row[0]
lname = row[1]
age = row[2]
sex = row[3]
income = row[4]
# Now print fetched result
print "fname=%s,lname=%s,age=%d,sex=%s,income=%d" % 
(fname, lname, age, sex, income )
except:
print "Error: unable to fecth data"
# disconnect from server
db.close()
This willproduce the following result:
fname=Mac, lname=Mohan, age=20, sex=M, income=2000
Update Operation:
UPDATE Operationonany databasse means to update one or more records, whichare already available inthe
database. Following is the procedure to update allthe records having SEX as 'M'. Here, we willincrease AGE of
allthe males by one year.
Example:
#!/usr/bin/python
import MySQLdb
# Open database connection
db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )
# prepare a cursor object using cursor() method
cursor = db.cursor()
# Prepare SQL query to UPDATE required records
sql = "UPDATE EMPLOYEE SET AGE = AGE + 1
WHERE SEX = '%c'" % ('M')
try:
# Execute the SQL command
cursor.execute(sql)
# Commit your changes in the database
db.commit()
except:
# Rollback in case there is any error
db.rollback()
# disconnect from server
db.close()
DELETE Operation:
DELETE operationis required whenyouwant to delete some records fromyour database. Following is the
procedure to delete allthe records fromEMPLOYEE where AGE is more than20:
Example:
#!/usr/bin/python
import MySQLdb
# Open database connection
db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )
# prepare a cursor object using cursor() method
cursor = db.cursor()
# Prepare SQL query to DELETE required records
sql = "DELETE FROM EMPLOYEE WHERE AGE > '%d'" % (20)
try:
# Execute the SQL command
cursor.execute(sql)
# Commit your changes in the database
db.commit()
except:
# Rollback in case there is any error
db.rollback()
# disconnect from server
db.close()
Performing Transactions:
Transactions are a mechanismthat ensures data consistency. Transactions should have the following four
properties:
Atomicity: Either a transactioncompletes or nothing happens at all.
Consistency: A transactionmust start ina consistent state and leave the systemina consistent state.
Isolation: Intermediate results of a transactionare not visible outside the current transaction.
Durability: Once a transactionwas committed, the effects are persistent, evenafter a systemfailure.
The PythonDB API 2.0 provides two methods to either commit or rollback a transaction.
Example:
Youalready have seenhow we have implemented transations. Here is againsimilar example:
# Prepare SQL query to DELETE required records
sql = "DELETE FROM EMPLOYEE WHERE AGE > '%d'" % (20)
try:
# Execute the SQL command
cursor.execute(sql)
# Commit your changes in the database
db.commit()
except:
# Rollback in case there is any error
db.rollback()
COMMIT Operation:
Commit is the operation, whichgives a greensignalto database to finalize the changes, and after this operation,
no change canbe reverted back.
Here is a simple example to callcommit method.
db.commit()
ROLLBACK Operation:
If youare not satisfied withone or more of the changes and youwant to revert back those changes completely,
thenuse rollback() method.
Here is a simple example to callrollback() method.
db.rollback()
Disconnecting Database:
To disconnect Database connection, use close() method.
db.close()
If the connectionto a database is closed by the user withthe close() method, any outstanding transactions are
rolled back by the DB. However, instead of depending onany of DB lower levelimplementationdetails, your
applicationwould be better off calling commit or rollback explicitly.
Handling Errors:
There are many sources of errors. A few examples are a syntax error inanexecuted SQL statement, a
connectionfailure, or calling the fetchmethod for analready canceled or finished statement handle.
The DB API defines a number of errors that must exist ineachdatabase module. The following table lists these
exceptions.
Exception Description
Warning Used for non-fatalissues. Must subclass StandardError.
Error Base class for errors. Must subclass StandardError.
InterfaceError Used for errors inthe database module, not the database itself. Must subclass Error.
DatabaseError Used for errors inthe database. Must subclass Error.
DataError Subclass of DatabaseError that refers to errors inthe data.
OperationalError Subclass of DatabaseError that refers to errors suchas the loss of a connectionto the
database. These errors are generally outside of the controlof the Pythonscripter.
IntegrityError Subclass of DatabaseError for situations that would damage the relationalintegrity,
suchas uniqueness constraints or foreignkeys.
InternalError Subclass of DatabaseError that refers to errors internalto the database module, such
as a cursor no longer being active.
ProgrammingError Subclass of DatabaseError that refers to errors suchas a bad table name and other
things that cansafely be blamed onyou.
NotSupportedError Subclass of DatabaseError that refers to trying to callunsupported functionality.
Your Pythonscripts should handle these errors, but before using any of the above exceptions, make sure your
MySQLdb has support for that exception. Youcanget more informationabout themby reading the DB API 2.0
specification.

More Related Content

PPTX
2. R-basics, Vectors, Arrays, Matrices, Factors
PPTX
Advanced JavaScript
PDF
Lecture 2
PDF
Type hints Python 3
PDF
Monad as functor with pair of natural transformations
PPT
Database concepts
PPT
PPTX
Query evaluation and optimization
2. R-basics, Vectors, Arrays, Matrices, Factors
Advanced JavaScript
Lecture 2
Type hints Python 3
Monad as functor with pair of natural transformations
Database concepts
Query evaluation and optimization

What's hot (20)

PDF
Data transformation-cheatsheet
PPSX
Arrays in Java
PPTX
Insert Statement
PPTX
Object Oriented Programming In JavaScript
ODP
Functors, Applicatives and Monads In Scala
PPTX
Multistage graph unit 4 of algorithm.ppt
PPTX
Aggregate Function - Database
PPTX
Machine learning ( Part 2 )
PDF
C++11 & C++14
PPT
Er & eer to relational mapping
PPTX
Balanced Tree (AVL Tree & Red-Black Tree)
PPTX
Hash table in data structure and algorithm
PPT
An Introduction to Netezza
PDF
MySQL Tuning
PDF
ZIO Queue
PDF
The Relational Data Model and Relational Database Constraints
PDF
Python Advanced – Building on the foundation
PPTX
Priority queue in DSA
Data transformation-cheatsheet
Arrays in Java
Insert Statement
Object Oriented Programming In JavaScript
Functors, Applicatives and Monads In Scala
Multistage graph unit 4 of algorithm.ppt
Aggregate Function - Database
Machine learning ( Part 2 )
C++11 & C++14
Er & eer to relational mapping
Balanced Tree (AVL Tree & Red-Black Tree)
Hash table in data structure and algorithm
An Introduction to Netezza
MySQL Tuning
ZIO Queue
The Relational Data Model and Relational Database Constraints
Python Advanced – Building on the foundation
Priority queue in DSA
Ad

Similar to Python database access (20)

PPTX
PYTHON_DATABASE_CONNECTIVITY.pptxPYTHON_DATABASE
PPTX
PYTHON_DATABASE_CONNECTIVITY_for_class_12.pptx
PPTX
python db connection samples and program
PPTX
Pyhton with Mysql to perform CRUD operations.pptx
PDF
RMySQL Tutorial For Beginners
PDF
9 Python programming notes for ktu physics and computer application semester 4
PPT
PHP - Getting good with MySQL part II
PPTX
Database Connectivity using Python and MySQL
DOCX
Accessing data with android cursors
DOCX
Accessing data with android cursors
PDF
Mysql python
PPTX
Mysql python
PPTX
Interfacing python to mysql (11363255151).pptx
PDF
Python my SQL - create table
PPT
JDBC for CSQL Database
PDF
All Things Open 2016 -- Database Programming for Newbies
PDF
PHP with MySQL
PPT
Jdbc oracle
PPTX
harry presentation
PPT
Raj mysql
PYTHON_DATABASE_CONNECTIVITY.pptxPYTHON_DATABASE
PYTHON_DATABASE_CONNECTIVITY_for_class_12.pptx
python db connection samples and program
Pyhton with Mysql to perform CRUD operations.pptx
RMySQL Tutorial For Beginners
9 Python programming notes for ktu physics and computer application semester 4
PHP - Getting good with MySQL part II
Database Connectivity using Python and MySQL
Accessing data with android cursors
Accessing data with android cursors
Mysql python
Mysql python
Interfacing python to mysql (11363255151).pptx
Python my SQL - create table
JDBC for CSQL Database
All Things Open 2016 -- Database Programming for Newbies
PHP with MySQL
Jdbc oracle
harry presentation
Raj mysql
Ad

More from Smt. Indira Gandhi College of Engineering, Navi Mumbai, Mumbai (20)

PDF
PWM Arduino Experiment for Engineering pra
PDF
Artificial Intelligence (AI) application in Agriculture Area
PDF
VLSI Design Book CMOS_Circuit_Design__Layout__and_Simulation
PDF
Question Bank: Network Management in Telecommunication
PDF
INTRODUCTION TO CYBER LAW The Concept of Cyberspace Cyber law Cyber crime.pdf
PDF
Network Management Principles and Practice - 2nd Edition (2010)_2.pdf
PDF
Mini Project fo BE Engineering students
PDF
Mini Project for Engineering Students BE or Btech Engineering students
PDF
VLSI Design_LAB MANUAL By Umakant Gohatre
PDF
cyber crime, Cyber Security, Introduction, Umakant Bhaskar Gohatre
PDF
Image Compression, Introduction Data Compression/ Data compression, modelling...
PDF
Introduction Data Compression/ Data compression, modelling and coding,Image C...
PWM Arduino Experiment for Engineering pra
Artificial Intelligence (AI) application in Agriculture Area
VLSI Design Book CMOS_Circuit_Design__Layout__and_Simulation
Question Bank: Network Management in Telecommunication
INTRODUCTION TO CYBER LAW The Concept of Cyberspace Cyber law Cyber crime.pdf
Network Management Principles and Practice - 2nd Edition (2010)_2.pdf
Mini Project fo BE Engineering students
Mini Project for Engineering Students BE or Btech Engineering students
VLSI Design_LAB MANUAL By Umakant Gohatre
cyber crime, Cyber Security, Introduction, Umakant Bhaskar Gohatre
Image Compression, Introduction Data Compression/ Data compression, modelling...
Introduction Data Compression/ Data compression, modelling and coding,Image C...

Recently uploaded (20)

PDF
Well-logging-methods_new................
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PPTX
web development for engineering and engineering
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPTX
bas. eng. economics group 4 presentation 1.pptx
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
DOCX
573137875-Attendance-Management-System-original
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PDF
Embodied AI: Ushering in the Next Era of Intelligent Systems
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PPTX
CH1 Production IntroductoryConcepts.pptx
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
PDF
composite construction of structures.pdf
Well-logging-methods_new................
Foundation to blockchain - A guide to Blockchain Tech
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
web development for engineering and engineering
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
Automation-in-Manufacturing-Chapter-Introduction.pdf
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
bas. eng. economics group 4 presentation 1.pptx
CYBER-CRIMES AND SECURITY A guide to understanding
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
573137875-Attendance-Management-System-original
Model Code of Practice - Construction Work - 21102022 .pdf
Embodied AI: Ushering in the Next Era of Intelligent Systems
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
CH1 Production IntroductoryConcepts.pptx
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
composite construction of structures.pdf

Python database access

  • 1. http://www.tutorialspoint.com/python/python_database_access.htm Copyright © tutorialspoint.com PYTHON MYSQL DATABASE ACCESS The Pythonstandard for database interfaces is the PythonDB-API. Most Pythondatabase interfaces adhere to this standard. Youcanchoose the right database for your application. PythonDatabase API supports a wide range of database servers: GadFly mSQL MySQL PostgreSQL Microsoft SQL Server 2000 Informix Interbase Oracle Sybase Here is the list of available Pythondatabase interfaces: PythonDatabase Interfaces and APIs .Youmust download a separate DB API module for eachdatabase youneed to access. For example, if youneed to access anOracle database as wellas a MySQL database, youmust download boththe Oracle and the MySQL database modules. The DB API provides a minimalstandard for working withdatabases using Pythonstructures and syntax wherever possible. This API includes the following: Importing the API module. Acquiring a connectionwiththe database. Issuing SQL statements and stored procedures. Closing the connection We would learnallthe concepts using MySQL, so let's talk about MySQLdb module only. What is MySQLdb? MySQLdb is aninterface for connecting to a MySQL database server fromPython. It implements the Python Database API v2.0 and is built ontop of the MySQL C API. How do I install the MySQLdb? Before proceeding, youmake sure youhave MySQLdb installed onyour machine. Just type the following inyour Pythonscript and execute it: #!/usr/bin/python import MySQLdb If it produces the following result, thenit means MySQLdb module is not installed: Traceback (most recent call last): File "test.py", line 3, in <module>
  • 2. import MySQLdb ImportError: No module named MySQLdb To installMySQLdb module, download it fromMySQLdb Download page and proceed as follows: $ gunzip MySQL-python-1.2.2.tar.gz $ tar -xvf MySQL-python-1.2.2.tar $ cd MySQL-python-1.2.2 $ python setup.py build $ python setup.py install Note: Make sure youhave root privilege to installabove module. Database Connection: Before connecting to a MySQL database, make sure of the followings: Youhave created a database TESTDB. Youhave created a table EMPLOYEE inTESTDB. This table is having fields FIRST_NAME, LAST_NAME, AGE, SEX and INCOME. User ID "testuser" and password "test123" are set to access TESTDB. Pythonmodule MySQLdb is installed properly onyour machine. Youhave gone throughMySQL tutorialto understand MySQL Basics. Example: Following is the example of connecting withMySQL database "TESTDB" #!/usr/bin/python import MySQLdb # Open database connection db = MySQLdb.connect("localhost","testuser","test123","TESTDB" ) # prepare a cursor object using cursor() method cursor = db.cursor() # execute SQL query using execute() method. cursor.execute("SELECT VERSION()") # Fetch a single row using fetchone() method. data = cursor.fetchone() print "Database version : %s " % data # disconnect from server db.close() While running this script, it is producing the following result inmy Linux machine. Database version : 5.0.45 If a connectionis established withthe datasource, thena ConnectionObject is returned and saved into db for further use, otherwise db is set to None. Next, db object is used to create a cursor object, whichinturnis used to execute SQL queries. Finally, before coming out, it ensures that database connectionis closed and resources are released. Creating Database Table: Once a database connectionis established, we are ready to create tables or records into the database tables
  • 3. using execute method of the created cursor. Example: First, let's create Database table EMPLOYEE: #!/usr/bin/python import MySQLdb # Open database connection db = MySQLdb.connect("localhost","testuser","test123","TESTDB" ) # prepare a cursor object using cursor() method cursor = db.cursor() # Drop table if it already exist using execute() method. cursor.execute("DROP TABLE IF EXISTS EMPLOYEE") # Create table as per requirement sql = """CREATE TABLE EMPLOYEE ( FIRST_NAME CHAR(20) NOT NULL, LAST_NAME CHAR(20), AGE INT, SEX CHAR(1), INCOME FLOAT )""" cursor.execute(sql) # disconnect from server db.close() INSERT Operation: INSERT operationis required whenyouwant to create your records into a database table. Example: Following is the example, whichexecutes SQL INSERT statement to create a record into EMPLOYEE table: #!/usr/bin/python import MySQLdb # Open database connection db = MySQLdb.connect("localhost","testuser","test123","TESTDB" ) # prepare a cursor object using cursor() method cursor = db.cursor() # Prepare SQL query to INSERT a record into the database. sql = """INSERT INTO EMPLOYEE(FIRST_NAME, LAST_NAME, AGE, SEX, INCOME) VALUES ('Mac', 'Mohan', 20, 'M', 2000)""" try: # Execute the SQL command cursor.execute(sql) # Commit your changes in the database db.commit() except: # Rollback in case there is any error db.rollback() # disconnect from server db.close() Above example canbe writtenas follows to create SQL queries dynamically:
  • 4. #!/usr/bin/python import MySQLdb # Open database connection db = MySQLdb.connect("localhost","testuser","test123","TESTDB" ) # prepare a cursor object using cursor() method cursor = db.cursor() # Prepare SQL query to INSERT a record into the database. sql = "INSERT INTO EMPLOYEE(FIRST_NAME, LAST_NAME, AGE, SEX, INCOME) VALUES ('%s', '%s', '%d', '%c', '%d' )" % ('Mac', 'Mohan', 20, 'M', 2000) try: # Execute the SQL command cursor.execute(sql) # Commit your changes in the database db.commit() except: # Rollback in case there is any error db.rollback() # disconnect from server db.close() Example: Following code segment is another formof executionwhere youcanpass parameters directly: .................................. user_id = "test123" password = "password" con.execute('insert into Login values("%s", "%s")' % (user_id, password)) .................................. READ Operation: READ Operationonany databasse means to fetchsome usefulinformationfromthe database. Once our database connectionis established, we are ready to make a query into this database. We canuse either fetchone() method to fetchsingle record or fetchall() method to fetechmultiple values froma database table. fetchone(): This method fetches the next row of a query result set. A result set is anobject that is returned whena cursor object is used to query a table. fetchall(): This method fetches allthe rows ina result set. If some rows have already beenextracted fromthe result set, the fetchall() method retrieves the remaining rows fromthe result set. rowcount: This is a read-only attribute and returns the number of rows that were affected by an execute() method. Example: Following is the procedure to query allthe records fromEMPLOYEE table having salary more than1000: #!/usr/bin/python import MySQLdb
  • 5. # Open database connection db = MySQLdb.connect("localhost","testuser","test123","TESTDB" ) # prepare a cursor object using cursor() method cursor = db.cursor() # Prepare SQL query to INSERT a record into the database. sql = "SELECT * FROM EMPLOYEE WHERE INCOME > '%d'" % (1000) try: # Execute the SQL command cursor.execute(sql) # Fetch all the rows in a list of lists. results = cursor.fetchall() for row in results: fname = row[0] lname = row[1] age = row[2] sex = row[3] income = row[4] # Now print fetched result print "fname=%s,lname=%s,age=%d,sex=%s,income=%d" % (fname, lname, age, sex, income ) except: print "Error: unable to fecth data" # disconnect from server db.close() This willproduce the following result: fname=Mac, lname=Mohan, age=20, sex=M, income=2000 Update Operation: UPDATE Operationonany databasse means to update one or more records, whichare already available inthe database. Following is the procedure to update allthe records having SEX as 'M'. Here, we willincrease AGE of allthe males by one year. Example: #!/usr/bin/python import MySQLdb # Open database connection db = MySQLdb.connect("localhost","testuser","test123","TESTDB" ) # prepare a cursor object using cursor() method cursor = db.cursor() # Prepare SQL query to UPDATE required records sql = "UPDATE EMPLOYEE SET AGE = AGE + 1 WHERE SEX = '%c'" % ('M') try: # Execute the SQL command cursor.execute(sql) # Commit your changes in the database db.commit() except: # Rollback in case there is any error db.rollback() # disconnect from server db.close() DELETE Operation:
  • 6. DELETE operationis required whenyouwant to delete some records fromyour database. Following is the procedure to delete allthe records fromEMPLOYEE where AGE is more than20: Example: #!/usr/bin/python import MySQLdb # Open database connection db = MySQLdb.connect("localhost","testuser","test123","TESTDB" ) # prepare a cursor object using cursor() method cursor = db.cursor() # Prepare SQL query to DELETE required records sql = "DELETE FROM EMPLOYEE WHERE AGE > '%d'" % (20) try: # Execute the SQL command cursor.execute(sql) # Commit your changes in the database db.commit() except: # Rollback in case there is any error db.rollback() # disconnect from server db.close() Performing Transactions: Transactions are a mechanismthat ensures data consistency. Transactions should have the following four properties: Atomicity: Either a transactioncompletes or nothing happens at all. Consistency: A transactionmust start ina consistent state and leave the systemina consistent state. Isolation: Intermediate results of a transactionare not visible outside the current transaction. Durability: Once a transactionwas committed, the effects are persistent, evenafter a systemfailure. The PythonDB API 2.0 provides two methods to either commit or rollback a transaction. Example: Youalready have seenhow we have implemented transations. Here is againsimilar example: # Prepare SQL query to DELETE required records sql = "DELETE FROM EMPLOYEE WHERE AGE > '%d'" % (20) try: # Execute the SQL command cursor.execute(sql) # Commit your changes in the database db.commit() except: # Rollback in case there is any error db.rollback() COMMIT Operation: Commit is the operation, whichgives a greensignalto database to finalize the changes, and after this operation, no change canbe reverted back. Here is a simple example to callcommit method. db.commit()
  • 7. ROLLBACK Operation: If youare not satisfied withone or more of the changes and youwant to revert back those changes completely, thenuse rollback() method. Here is a simple example to callrollback() method. db.rollback() Disconnecting Database: To disconnect Database connection, use close() method. db.close() If the connectionto a database is closed by the user withthe close() method, any outstanding transactions are rolled back by the DB. However, instead of depending onany of DB lower levelimplementationdetails, your applicationwould be better off calling commit or rollback explicitly. Handling Errors: There are many sources of errors. A few examples are a syntax error inanexecuted SQL statement, a connectionfailure, or calling the fetchmethod for analready canceled or finished statement handle. The DB API defines a number of errors that must exist ineachdatabase module. The following table lists these exceptions. Exception Description Warning Used for non-fatalissues. Must subclass StandardError. Error Base class for errors. Must subclass StandardError. InterfaceError Used for errors inthe database module, not the database itself. Must subclass Error. DatabaseError Used for errors inthe database. Must subclass Error. DataError Subclass of DatabaseError that refers to errors inthe data. OperationalError Subclass of DatabaseError that refers to errors suchas the loss of a connectionto the database. These errors are generally outside of the controlof the Pythonscripter. IntegrityError Subclass of DatabaseError for situations that would damage the relationalintegrity, suchas uniqueness constraints or foreignkeys. InternalError Subclass of DatabaseError that refers to errors internalto the database module, such as a cursor no longer being active. ProgrammingError Subclass of DatabaseError that refers to errors suchas a bad table name and other things that cansafely be blamed onyou. NotSupportedError Subclass of DatabaseError that refers to trying to callunsupported functionality. Your Pythonscripts should handle these errors, but before using any of the above exceptions, make sure your MySQLdb has support for that exception. Youcanget more informationabout themby reading the DB API 2.0 specification.