python 简单连接mysql数据库

Posted EWWE

tags:

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

1. 安装pymysql 库

pip install pymysql

2.实例本地连接mysql库

#!/usr/bin/python
# encoding: utf-8

""" 
@version: v1.0 
@author: dabao 
@license: Apache Licence  
@contact: robbile@163.com 
@site: http://www.cnblogs.com/EWWE/ 
@software: PyCharm Community Edition 
@file: 1225.2.mysql.py 
@time: 2017/12/25 22:07 
"""

import pymysql

try:
    db = pymysql.connect("127.0.0.1", "root", "123456")
    cursor = db.cursor()#数据游标
    cursor.execute("show databases")#查询所有数据库
    cursor.execute("use world")#使用world数据库
    cursor.execute("show tables")#查询所有表
    cursor.execute("show columns from city")#查询表信息
    cursor.execute("select * from city where id<10")#查询city表中ID小于10的数据
    date = cursor.fetchall()#查询结果
    print date#打印查询结果
    db.close()
    print "登陆成功"
except:
    print "登陆失败"

 

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

Python + Tkinter简单实现注册登录(连接本地MySQL数据库)

python 简单连接mysql数据库

连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段

python 连接各类主流数据库简单示例

python 连接各类主流数据库简单示例

python 连接各类主流数据库简单示例