win7上python2.7连接mysql数据库的方法

时间:2022-04-28 19:36:48

 一:安装MySQL-python驱动

?
1
pip install mysql

win7上python2.7连接mysql数据库的方法

二:连接到MySQL服务器的test数据库

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
import mysql.connector
if __name__ == "__main__":
   # 打开数据库连接
  conn=mysql.connector.connect(host='IP',
       user='root',
       passwd='1234',
       db='dbName')
 
  # 使用cursor()方法获取操作游标
  cursor=conn.cursor()
 
  # 使用execute方法执行SQL语句
  cursor.execute('select * from tset where 1=1') #表查询
 
  # 使用 fetchone() 方法获取一条数据库。
  values=cursor.fetchall()
 
  print(values)
 
  # 关闭数据库连接
  cursor.close()

win7上python2.7连接mysql数据库的方法

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://blog.csdn.net/silentwolfyh/article/details/54407951