数据库
Kukafee
好好工作、好好生活、好好旅游。
展开
-
【每天一篇博客】python 连接数据库
python 连接MySQL class DB(): """ 与 统计 数据库交互 """ def __init__(self, user=feed_username, # 服务器用户名 passwd=feed_password, # 服务器密码 host=feed_ip, # 服务器IP port=<feed_po...原创 2020-09-23 14:44:14 · 177 阅读 · 0 评论 -
MySQL 使用备忘
在SQL语句中,如果要对字符串使用统配,需要加上引号 如下面例子中的 '{creative_id}' SELECT `status` AS `audit_status` FROM creativeFeeds WHERE creative_response_id='{creative_id}';原创 2020-09-18 18:57:42 · 101 阅读 · 0 评论 -
python 使用SQLAlchemy 管理mysql数据库(未完)
安装mysql数据库 修改mysql,使得可远程登录 -- 修改mysql服务器的mysql数据库的 user 表中的 host字段 update user set host = '%' where user = 'root'; FLUSH RIVILEGES alter user 'root'@'%' identified with mysql_native_p...原创 2020-03-07 20:40:48 · 256 阅读 · 0 评论