码迷,mamicode.com
首页 > 数据库 > 详细

python 操作数据库

时间:2016-10-12 22:44:27      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

import pymysql

db = pymysql.connect(localhost,root,anotherone,czx)
cur = db.cursor()

#插入
#cur.execute(‘insert game values (NULL,"Tom",26,90,50,500,94)‘)

#更新
#cur.execute("update game set name=‘John‘ where name=‘kj‘")

#查询
#cur.execute("select * from game")

#删除

#cur.execute("delete from game where id = 17")

##cur.execute("select * from game")

for i in cur:
  print(i) db.close()

 

python 操作数据库

标签:

原文地址:http://www.cnblogs.com/wumac/p/5954318.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!