python中非常好用的数据库管理工具
时间:2021-07-01 10:21:17
帮助过:4人阅读
//dataset.readthedocs.io/en/latest/
补充:
连接mysql数据库:
db = dataset.connect(
‘mysql://username:password@10.10.10.10/onlinedb?charset=utf8‘)
(用户名:username,密码:password,数据库地址(地址+端口):10.10.10.10
,database名: onlinedb)
一定要注意指定字符编码啊,被这个坑死了。
table = db[
‘city‘]
#(选择city表)
user = table(
‘name‘)
# 找出表中‘name‘列属性所有数据
res = db.query(
‘select name from table limit 10‘)
# 如果不需要查看全部数据的话最好用limit,因为全部数据的载入时间简直不能忍啊
for x
in res:
print x[
‘name‘]
# 选name字段的数据
在数据库中查找是否有同时满足多个条件的数据(find_one的速度让人痛心啊):table.find_one(属性1=属性值1, 属性2=属性值2, ...)
python中非常好用的数据库管理工具
标签:不能 col ble adt nec 管理工具 mys char 文件