码迷,mamicode.com
首页 > 数据库 > 详细

Python 连接mysql数据库进行操作

时间:2018-03-28 16:56:59      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:Python连接mysql数据库进行操作


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

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


2.创建python脚本

[root@python ~]# 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.执行脚本,进库查看是否成功

[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)







Python 连接mysql数据库进行操作

标签:Python连接mysql数据库进行操作

原文地址:http://blog.51cto.com/1767340368/2092034

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!