python数据库模块
Posted 负重前行岁月静好
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python数据库模块相关的知识,希望对你有一定的参考价值。
- 安装数据库
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.3/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
yum -y install MariaDB
systemctl restart mysql
systemctl enable mysqld
- 配置数据库
mysql
> grant all privileges on *.* to root@‘%‘ identified by ‘root‘;
flush privileges;
> use mysql;
> select host,user,password from user;
exit
firewall-cmd --add-port=3306/tcp
firewall-cmd --add-port=3306/tcp --permanent
- 连接数据库
import pymysql
db = pymysql.connect(host="192.168.200.12",user="root",
password="root",db="mysql",port=3306)
cusor = db.cursor()
cursor.excute(‘select host,user,password from user‘) # cursor 是游标
#cursor.excute(‘create database class‘) #excute 执行
res = cursor.fetchall() #查询命令
res = cursor.fetchmany()
for result in res :
print(result)
以上是关于python数据库模块的主要内容,如果未能解决你的问题,请参考以下文章
Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段