博客
关于我
Python连接MySQL数据库
阅读量:457 次
发布时间:2019-03-06

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

连接MySQL数据库并执行查询操作

在代码中首先需要导入MySQLdb模块

print '连接数据库'

如果host处如果填写'localhost'报错的话,请尝试使用'127.0.0.1'

db=MySQLdb.connect(host='127.0.0.1',user='root',passwd='michael',db='test')

获取数据库游标

cur=db.cursor()

执行SQL语句

r=cur.execute('select * from people')

获取查询结果

r=cur.fetchall()

输出查询结果

print '输出数据库查询结果:'

print r

关闭游标

cur.close()

关闭数据库连接

db.close()

raw_input与input的区别

raw_input获取用户输入之后的返回结果是一个字符串类型数据

input获取用户输入之后的返回值是一个数值型的数据

等价于eval(raw_input(提示信息))

转载地址:http://lsubz.baihongyu.com/

你可能感兴趣的文章
No mapping found for HTTP request with URI [/logout.do] in DispatcherServlet with name 'springmvc'
查看>>
No module named 'crispy_forms'等使用pycharm开发
查看>>
No module named cv2
查看>>
No module named tensorboard.main在安装tensorboardX的时候遇到的问题
查看>>
No module named ‘MySQLdb‘错误解决No module named ‘MySQLdb‘错误解决
查看>>
No new migrations found. Your system is up-to-date.
查看>>
No qualifying bean of type XXX found for dependency XXX.
查看>>
No resource identifier found for attribute 'srcCompat' in package的解决办法
查看>>
no session found for current thread
查看>>
No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android
查看>>
NO.23 ZenTaoPHP目录结构
查看>>
no1
查看>>
NO32 网络层次及OSI7层模型--TCP三次握手四次断开--子网划分
查看>>
NoClassDefFoundError: org/springframework/boot/context/properties/ConfigurationBeanFactoryMetadata
查看>>
Node JS: < 一> 初识Node JS
查看>>
Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime(72)
查看>>
Node-RED中使用JSON数据建立web网站
查看>>
Node-RED中使用json节点解析JSON数据
查看>>
Node-RED中使用node-random节点来实现随机数在折线图中显示
查看>>
Node-RED中使用node-red-browser-utils节点实现选择Windows操作系统中的文件并实现图片预览
查看>>