Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Using Python to connect and manipulate the mysql database method

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Here's how to use Python to connect to and manipulate mysql databases. The secret of the text is that it is relevant to the topic. So, no gossip, let's go straight to the following, I believe you will benefit from reading this article on using Python connections and manipulating mysql database methods.

The 1.MySQLdb module is an interface for Python to link to Mysql databases. It is not installed by default.

[root@python ~] # yum install MySQL-python-y

two。 Create a python script

[root@python ~] # cat mysql.py

#! / usr/bin/env python

#-*-coding: UTF-8-*-

Import MySQLdb as mysql # Import MySQLdb module

Db=mysql.connect (user='root',passwd='centos',db='test',host='localhost') # connect to the database

Cursor=db.cursor () # create a cursor object

Sql='create table test (id int,name varchar (8));'# create a table

Cursor.execute (sql) # execute sql statement

Db.close () # close the connection

3. Execute the script and enter the library to see if it is successful.

[root@python] # mysql-uroot-pcentos

Mysql > use test

Database changed

Mysql > show tables

+-+

| | Tables_in_test |

+-+

| | test |

+-+

1 row in set (0.00 sec)

Mysql > desc test

+-+ +

| | Field | Type | Null | Key | Default | Extra | |

+-+ +

| | id | int (11) | YES | | NULL |

| | name | varchar (8) | YES | | NULL |

+-+ +

2 rows in set (0.00 sec)

Is there anything you don't understand about the above methods of using Python to connect and manipulate mysql databases? Or if you want to know more about it, you can continue to follow our industry information section.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report