博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
通过Python实现mysql查询数据库实例
阅读量:5328 次
发布时间:2019-06-14

本文共 1026 字,大约阅读时间需要 3 分钟。

#coding:utf-8'''Created on 2017年10月25日@author: li.liu'''import pymysqldb=pymysql.connect('localhost','root','root','test',charset='utf8')m=db.cursor()'''try:    #a=raw_input('请输入sql语句'+'\n')    m.execute('select * from student')    a=m.fetchall()    b=m.description    print b    print a    for i in range(len(a)):        n=''        for j in range(len(b)):            c=str(a[i][j])            d=b[j][0].encode('utf-8')            print '%s: %s\t'%(d,c),        print '\r'                except:    print 'SQL语句错误,请检查'finally:    db.close()    '''while True:        try:        s=raw_input('请输入sql语句'+'\n')        if s=='exit':break        m.execute(s)        a=m.fetchall()        b=m.description        for i in range(len(a)):            n=''            for j in range(len(b)):                c=str(a[i][j])                d=b[j][0].encode('utf-8')                print '%s: %s\t'%(d,c),            print '\r'        print '\r'    except:        print 'SQL语句错误,请检查'

  

 

转载于:https://www.cnblogs.com/liuliu-word/p/8058115.html

你可能感兴趣的文章
Swift和OC混编
查看>>
深度学习文献阅读笔记(6)
查看>>
Android轻量级的开源缓存框架ASimpleCache
查看>>
让页面上图片不变形
查看>>
pyspider--post
查看>>
他山之石:加载图片的一个小问题
查看>>
设计模式讲解2:static proxy和decorator的不同点
查看>>
IOS 多个UIImageView 加载高清大图时内存管理
查看>>
shell - 常识
查看>>
[PHP] excel 的导入导出
查看>>
圆角进度条,带数字居中显示的圆角进度条
查看>>
docker-containerd 启动流程分析
查看>>
SDL(01-10)
查看>>
HDFS v1.0学习笔记
查看>>
2017马上过去了
查看>>
03: 通讯录管理
查看>>
Kettle数据源连接配置
查看>>
[na]pc加入域认证细节
查看>>
Harris角点检测原理分析
查看>>
【学习笔记】bootstrap之CSS组件
查看>>