如何通过python操作xampp里面的MySQL数据库 50
具体地讲,我想用python写一个爬虫程序,把从网上获取的信息存到xampp里面的MySQL数据库中,我具体应该怎么做啊。。?能否稍微详细的讲下怎么搭建一个数据库,怎么操...
具体地讲,我想用python写一个爬虫程序,把从网上获取的信息存到xampp里面的MySQL数据库中,我具体应该怎么做啊。。?能否稍微详细的讲下怎么搭建一个数据库,怎么操作数据库,如果举例子更好。谢谢!
哦我的系统是win8.1
别只有代码,有点说明。。别复制网上的代码,我都查到过的。。 展开
哦我的系统是win8.1
别只有代码,有点说明。。别复制网上的代码,我都查到过的。。 展开
1个回答
展开全部
您好,
import
MySQLdb
try:
conn=MySQLdb.connect(host='localhost',user='root',passwd='root',port=3306)
cur=conn.cursor()
conn.select_db('python')
count=cur.execute('select *
from test')
print
'there has %s rows record' % count
result=cur.fetchone()
print
result
print
'ID: %s info %s' % result
results=cur.fetchmany(5)
for r in results:
print
r
print
'=='*10
cur.scroll(0,mode='absolute')
results=cur.fetchall()
for r in results:
print
r[1]
conn.commit()
cur.close()
conn.close()
except MySQLdb.Error,e:
print
"Mysql Error %d: %s" % (e.args[0], e.args[1])
import
MySQLdb
try:
conn=MySQLdb.connect(host='localhost',user='root',passwd='root',port=3306)
cur=conn.cursor()
conn.select_db('python')
count=cur.execute('select *
from test')
'there has %s rows record' % count
result=cur.fetchone()
result
'ID: %s info %s' % result
results=cur.fetchmany(5)
for r in results:
r
'=='*10
cur.scroll(0,mode='absolute')
results=cur.fetchall()
for r in results:
r[1]
conn.commit()
cur.close()
conn.close()
except MySQLdb.Error,e:
"Mysql Error %d: %s" % (e.args[0], e.args[1])
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询