Python 连接mysql数据库进行操作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 连接mysql数据库进行操作相关的知识,希望对你有一定的参考价值。


1.MySQLdb 模块是用于Python链接Mysql数据库的接口,默认是没有安装的

[[email protected] ~]# yum  install  MySQL-python   -y


2.创建python脚本

[[email protected] ~]# cat mysql.py 

#!/usr/bin/env python

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


import MySQLdb as mysql  #导入MySQLdb模块


db=mysql.connect(user='root',passwd='centos',db='test',host='localhost')  #连接数据库


cursor=db.cursor() #创建游标对象


sql='create table test(id int,name varchar(8));' #创建表


cursor.execute(sql) #执行sql语句


db.close() #关闭连接


3.执行脚本,进库查看是否成功

[[email protected] ~]# 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)







以上是关于Python 连接mysql数据库进行操作的主要内容,如果未能解决你的问题,请参考以下文章

mysq解决sleep进程过多的办法

python连接MySQL

Centos6.5 python2.7连接mysql数据库

Python3连接MySQL

使用navicat连接mysq数据库

Python 连接mysql数据库进行操作