博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python操作mysql
阅读量:4928 次
发布时间:2019-06-11

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

1, 下载MySQLdb: 

2, 如下python代码

#!/usr/bin/pythonimport MySQLdbdb = MySQLdb.connect(host="localhost", # your host, usually localhost                     user="john", # your username                      passwd="megajonhy", # your password                      db="jonhydb") # name of the data base# you must create a Cursor object. It will let#  you execute all the query you needcur = db.cursor() # Use all the SQL you likecur.execute("SELECT * FROM YOUR_TABLE_NAME")# print all the first cell of all the rowsfor row in cur.fetchall() :    print row[0]

 

转载于:https://www.cnblogs.com/miaoz/p/3595497.html

你可能感兴趣的文章
手撸ORM
查看>>
POJ---2406 Power Strings[求最长重复字串]
查看>>
linux搭建haproxy
查看>>
Oracle update 日期
查看>>
【t088】倒水
查看>>
【t016】邮递员
查看>>
EasyUI 树形菜单tree 定义图标
查看>>
android 从系统相册获取一张图片
查看>>
JS动态构建一棵目录树
查看>>
JS判断只能是数字和小数点
查看>>
SSL 2289——庆功会
查看>>
Linux命令--su与sudo
查看>>
python课堂练习
查看>>
区块链资料高清PDF合集
查看>>
xml实现AOP
查看>>
bzoj 4237稻草人
查看>>
在发送intent启动activity之前判断是否有activity接收
查看>>
html5特征检测
查看>>
js中几种实用的跨域方法原理详解
查看>>
打印图形
查看>>