博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MySQLdb简单查询
阅读量:6453 次
发布时间:2019-06-23

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

hot3.png

什么是MySQLdb

简单的说就是Python 连接 MySQL 的一个模块或者驱动程序,使用起来也很方便。如果你使用过其他语言,例如Java那么jdbc肯定再熟悉不过来了,mysqldb在Python中正是充当了一个类似于jdbc的角色。

怎么使用

数据库操作无非就是CRUD操作(Create,Retrieve,Update,Delete),即增删改查操作。更加大范围的讲也就是写和读两个操作。读数据一般比较简单,输入正常的sql语句即可。但写数据却不得不考虑事务。无论是读还是写,前提都是连连上数据库才可以操作,那么下面我们就从最基本的思路开始。

连接数据库

import MySQLdbconnection = mdb.connect("127.0.0.1",3306, "root", "root","dbname")

这样便意味着连上了数据库。

执行sql 查询语句

import MySQLdb as mdbconnection = mdb.connect("127.0.0.1",3306, "root", "root","test")cursor = connection.cursor()cursor.execute("select * from table")result = cursor.fetchall()cursor.close()   connection.close()

此处注意cursor.close()这个方法的执行,如果在执行玩sql语句不执行这条语句进行关闭游标,也许你将会遇到下面的错误信息:

Commands out of sync; you can't run this command now

上面的查询查到的信息知识简单的输出结果,如果想要输出带有列的json格式数据还需要进一步处理,其实也谈不上处理,因为MySQLdb已经帮助我们想到了这点,仅仅需要在connection.cursor()中添加个参数mdb.cursors.DictCursor,如下:

import MySQLdb as mdbconnection = mdb.connect("127.0.0.1",3306, "root", "root","test")cursor = connection.cursor(mdb.cursors.DictCursor)cursor.execute("select * from table")result = cursor.fetchall()cursor.close()   connection.close()

执行写入语句

执行写入语句,便是insert,update,delete操作语句。至于为什么要把写入单独列出来,就是因为事务这个东西。如果你用上面的案例去执行写入语句,你将会发现,虽然执行显示成功了,但是数据库则没有发生任何变化,不妨试试下面的例子:

import MySQLdb as mdbconnection = mdb.connect("127.0.0.1",3306, "root", "root","test")cursor = connection.cursor(mdb.cursors.DictCursor)cursor.execute("update table set field='xxx'")cursor.commit() cursor.close()   connection.close()

到目前为止应该是没问题的,如果还是无法改变数据库的变化,那你只能去看看了

其他操作

  • 查看所有数据库

import MySQLdb as mdbconnection = mdb.connect("127.0.0.1",3306, "root", "root")cursor = connection.cursor(mdb.cursors.DictCursor)cursor.execute("show databases")result = cursor.fetchall()cursor.close()   connection.close()

  • 查看库中的表格

    注:不要使用use dbname;这样的语句,直接在connect()方法中传数据库名便可以了

import MySQLdb as mdbconnection = mdb.connect("127.0.0.1",3306, "root", "root","test)cursor = connection.cursor(mdb.cursors.DictCursor)cursor.execute("show tables")result = cursor.fetchall()cursor.close()   connection.close()

转载于:https://my.oschina.net/crazyharry/blog/339700

你可能感兴趣的文章
linux基础知识之一
查看>>
Object类
查看>>
匿名内部类
查看>>
SMS 2003系列—分发Live Meeting 2007客户端
查看>>
VHDX差异磁盘环境优化和扩展
查看>>
Windows phone 应用开发[11]-Pex 构建自动化白盒测试[上]
查看>>
后网络时代思科的云计算野心
查看>>
即时数据模块设计 版本V5
查看>>
正则表达式 学习笔记5.2
查看>>
技术分享连载(十三)
查看>>
centos directory server
查看>>
自动监控主从MySQL同步的SHELL脚本
查看>>
Solr的搭建
查看>>
nodejs链接mongodb数据库
查看>>
新工作的这一个月
查看>>
RAID损坏后 对数据的完整备份
查看>>
参考文献规范格式
查看>>
物联网未来趋势:边缘计算正渐渐兴起
查看>>
error recoder,error debug for openStack kilo
查看>>
聚类算法概述
查看>>