美文网首页
Python 操作MySQL

Python 操作MySQL

作者: 周运来就是我 | 来源:发表于2020-11-27 08:23 被阅读0次

我的Python环境:

Python 2.7.14 |Anaconda, Inc.| (default, Oct 16 2017, 17:29:19) 
[GCC 7.2.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.

安装MySQL接口用的包:

  pip install MySQL-python

直接在Python解释器下操作

Python 2.7.14 |Anaconda, Inc.| (default, Oct 16 2017, 17:29:19) 
[GCC 7.2.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import MySQLdb
>>> conn = MySQLdb.connect(host='127.0.0.1',user='root',passwd='**********',db='firstSQL')
>>> cur=conn.cursor()
>>> reCount = cur.execute('select * from Products')
>>> print cur.fetchone()
('BR01', 'BRS01', '8 inch teddy bear', Decimal('5.99'), '8 inch teddy bear, comes with cap and jacket')
>>> print cur.fetchmany(8)
(('BR02', 'BRS01', '12 inch teddy bear', Decimal('8.99'), '12 inch teddy bear, comes with cap and jacket'), ('BR03', 'BRS01', '18 inch teddy bear', Decimal('11.99'), '18 inch teddy bear, comes with cap and jacket'), ('BNBG01', 'DLL01', 'Fish bean bag toy', Decimal('3.49'), 'Fish bean bag toy, complete with bean bag worms with which to feed it'), ('BNBG02', 'DLL01', 'Bird bean bag toy', Decimal('3.49'), 'Bird bean bag toy, eggs are not included'), ('BNBG03', 'DLL01', 'Rabbit bean bag toy', Decimal('3.49'), 'Rabbit bean bag toy, comes with bean bag carrots'), ('RGAN01', 'DLL01', 'Raggedy Ann', Decimal('4.99'), '18 inch Raggedy Ann doll'), ('RYL01', 'FNG01', 'King doll', Decimal('9.49'), '12 inch king doll with royal garments and crown'), ('RYL02', 'FNG01', 'Queen doll', Decimal('9.49'), '12 inch queen doll with royal garments and crown'))
>>> print cur.fetchall()
()
>>> cur.close()
>>> conn.close()

相关文章

  • 使用 pymysql 进行增删查改

    参考文章 用python实现接口测试(四、操作MySQL) python3使用pymysql操作mysql 安装 ...

  • mysql+python

    安装MySQL-python 要想使python可以操作mysql 就需要MySQL-python驱动,它是pyt...

  • pycharm连接mysql

    python操作MySQL(简单流程)

  • 05-Mysql数据库03

    mysql与python交互 拆表 python中操作mysql 安装pymysqlsudo pip instal...

  • 搜企网爬虫作业

    作业要求 (1)csv文件数据写入(2)mysql 操作,python mysql操作 这个需要安装mysql以及...

  • (十四) 学习笔记: 使用Python对Mysql Mongo

    一. Python对MySQL的操作 (1) 安装模块pip install pymysql(2) 操作mysql...

  • python作业-20170601

    作业:(1)csv文件数据写入(2)mysql 操作,python mysql操作 这个需要安装mysql以及p...

  • MySQL&python交互

    MySQL&python交互 一、Python操作MySQL步骤(原始的执行SQL语句) 引入pymysql模块 ...

  • Python3-mysql

    此文章记录一下python对mysql的一些操作方式、方法。 *python如何连接mysql ? python ...

  • Python操作MySQL

    Python操作MySQL 一. python操作数据库介绍 Python 标准数据库接口为 Python DB-...

网友评论

      本文标题:Python 操作MySQL

      本文链接:https://www.haomeiwen.com/subject/xtzffftx.html