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

python 简单连接mysql数据库

时间:2017-12-25 23:18:27      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:databases   cut   class   nec   安装   pychar   mmu   time   登陆   

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数据库

标签:databases   cut   class   nec   安装   pychar   mmu   time   登陆   

原文地址:https://www.cnblogs.com/EWWE/p/8111544.html

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