摘要: 1:插入数据 import MySQLdb # 创建连接的变量 conn = MySQLdb.connect(host='127.0.0.1',user='root',passwd='123456',db='mysql') # 打开连接通道 cur = conn.cursor() # 执行execute语句,insert into一条数据 reCount = cur.execute(... 阅读全文
posted @ 2016-01-15 19:42 曹小贱 阅读(1014) 评论(0) 推荐(0) 编辑