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

MySqlDB基本操作程序一览

时间:2016-01-21 19:59:17      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

import MySQLdb

conn = MySQLdb.connect(host = "localhost", user = "root" ,passwd = "gongbo0801")
cur = conn.cursor()
#创建数据库
# cur.execute("drop database iamgongbo")
cur.execute("create database if not exists iamgongbo")
cur.execute("use iamgongbo")
#创建数据库表
cur.execute("""create table if not exists one(
id INT(20),
name CHAR(20)
)
""")
#插入数据
cur.execute("insert into one(id,name) values(20,‘gongbo‘)")
try:
#更新数据
cur.execute("update one set id=23 where name=‘gongbo‘")
except:
conn.rollback()
#获得数据
cur.execute("select * from one")
list = cur.fetchall()
for i in list:
print i[0]
print i[1]
#删除数据
cur.execute("delete from one where id = 23")
conn.commit()
conn.close()

MySqlDB基本操作程序一览

标签:

原文地址:http://www.cnblogs.com/gongbo/p/5148999.html

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