使用Python操作MySQL

1.下载windows下的MySQLdb

下载地址:http://sourceforge.net/projects/mysql-python/

下载成功之后,双击它,自动安装到了D:\program files\Python27\Lib\site-packages。

2.用网上的代码

# server_version.py - retrieve and display database server version

   import MySQLdb

   conn = MySQLdb.connect (host = "localhost",
                           user = "testuser",
                           passwd = "testpass",
                           db = "test")
   cursor = conn.cursor ()
   cursor.execute ("SELECT VERSION()")
   row = cursor.fetchone ()
   print "server version:", row[0]
   cursor.close ()
   conn.close ()

在conn = MySQLdb.connect()这句这里报错:

Traceback (most recent call last):
  File "<pyshell#12>", line 1, in <module>
    import MySQLdb
  File "E:/Github/python/20140331\MySQLdb.py", line 7, in <module>
    conn = MySQLdb.connect(host="localhost", user="root", passwd="", db="test",charset="utf8")
AttributeError: 'module' object has no attribute 'connect'

相关资料:

http://stackoverflow.com/questions/372885/how-do-i-connect-to-a-mysql-database-in-python

http://www.kitebird.com/articles/pydbapi.html

http://www.mikusa.com/python-mysql-docs/index.html

https://wiki.python.org/moin/DatabaseProgramming

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值