python中Mysql的create,insert,update,fetchall,fetchone一些简单操作

“”“

比较常用的参数包括:
host:数据库主机名.默认是用本地主机
user:数据库登陆名.默认是当前用户
passwd:数据库登陆的秘密.默认为空
db:要使用的数据库名.没有默认值
port:MySQL服务使用的TCP端口.默认是3306
charset:数据库编码

conn=MySQLdb.connect(host="localhost",user="root",passwd="xxxx",db="test",charset="utf8")
”“”


#-*- encoding: gb2312 -*-

import  sys
import MySQLdb
 
# 连接数据库 
try:

    conn = MySQLdb.connect(host='localhost',user='root',passwd='xxxx',db='world')

    #conn=MySQLdb.connect(host="localhost",user="root",passwd="xxxx",db="test",charset="utf8")

except Exception, e:
    print e
    sys.exit()#sys.exit()始终会抛出一个SystemExit异常。
 
# 获取cursor对象来进行操作
cursor = conn.cursor()


# 创建表
sql = "create table if not exists test1(name varchar(128) primary key, age int(4))"
cursor.execute(sql)
# 插入数据
sql = "insert into test1(name, age) values ('%s', %d)" % ("zhaowei", 23)
try:
    cursor.execute(sql)
except Exception, e:
    print e
 
sql = "insert into test1(name, age) values ('%s', %d)" % ("张三", 21)
try:
    cursor.execute(sql)
except Exception, e:
    print e
# 插入多条
sql = "insert into test1(name, age) values (%s, %s)"
val = (("李四", 24), ("王五", 25), ("洪六", 26))
try:
    cursor.executemany(sql, val)
except Exception, e:
    print e
 
#查询出数据
sql = "select * from test1"
cursor.execute(sql)
alldata = cursor.fetchall()


# 如果有数据返回,就循环输出, alldata是有个二维的列表
if alldata:
    for rec in alldata:

        print rec[0], rec[1]


  #查询出数据
sql = "select * from client"
cursor.execute(sql)
alldata = cursor.fetchall()
# 如果有数据返回,就全部输出
print alldata
 
cursor.close()
conn.close()
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值