python基础六--操作数据库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础六--操作数据库相关的知识,希望对你有一定的参考价值。

操作数据库模块:mysql的pymysql和redis的redis ,参考http://www.nnzhp.cn/blog/archives/402

1、操作mysql

import pymysql

conn=pymysql.connect(host=192.168.160.3,user=root,port=3306,passwd=123456,db=hqtest,charset=utf8)   #建立数据库连接     #关键字传参

couser=conn.cursor() #在连接上建立一个游标
sql=insert into hq(username,password) value("hq","25906028d04ba0563447f41dccb3c4cf")
couser.execute(sql2)
conn.commit()   #提交,insert、update、delete必须commit才能生效

sql2=select * from hq
couser.execute(sql)
print(couser.fetchall())  # 获取所有数据
couser.scroll(1,mode=absolute)   #移动游标,绝对的
print(couser.fetchone())   #每执行一次 获取一列数据
couser.scroll(0,mode=relative)   #移动游标,相对的
print(couser.fetchone())   #每执行一次 获取一列数据

couser=conn.cursor(cursor=pymysql.cursors.DictCursor)  #指定字典类型cursor
sql3=select * from hq
couser.execute(sql3)
print(couser.fetchall())

couser.close()   #关闭游标
conn.close()   #关闭连接

 

2、操作redis

import redis,json

r=redis.Redis(host=192.168.160.3,port=6379,db=0,password=123456)

# redis里面存的都是字符串;redis里面获取到的数据都是bytes类型的

# string类型的key
r.set(name,[1,2,3,4])
name = r.get(name)
print(name.decode())# 要使用.decode方法给它转成字符串才能继续操作
new_name = json.loads(name.decode())# list和字典
print(type(new_name))
r.setex(eee,hahaha,15)# 可以设置key的失效时间
print(r.get(hahahaahahahasdfsdfsd))# get不存在的key,就是返回None
r.mset(nhy=hahahaha,eee_age=19999) # 批量添加,排量set值时候用
r.delete(eee) # 删除某个key
print(r.keys(*n*)) # 获取所有的key

# 哈希类型的key
r.hset(user_session,eee,sdfjksdjflksfsdfsdfsfs)
r.hset(user_session,ooo,sdfjksdjflksfsdfsdfsfs)
print(r.hget(user_session,eee))# 获取指定name里面k的值
print(r.hgetall(user_session))# 获取哈希类型里面所有的值
r.hdel(user_session,eee)#删除指定的key
r.delete(user_session)#把整个key全删掉

# 创建文件夹
r.set(user:eee,haha) #创建文件添加string类型的key
r.set(user:ooo,hehe)
r.hset(session:qwert,www,12345)  #创建文件添加hash类型的key

 

以上是关于python基础六--操作数据库的主要内容,如果未能解决你的问题,请参考以下文章

python基础知识六 文件的基本操作+菜中菜

Python 函数声明和调用

《Python学习之路 -- Python基础之切片》

Python基础知识点六万字总结,爆肝一周熬夜完成建议收藏

Python基础知识点六万字总结,爆肝一周熬夜完成建议收藏

python基础六